You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge pull request #64 from shinji-san/release-v0.6.0
Release v0.6.0
Added
Add .NET 6 support
Changed
Use RandomNumberGenerator class instead RNGCryptoServiceProvider class to create the polynomial. For details see dotnet runtime issue dotnet/runtime#40169
Fixed
Fixed bug #60 "Reconstruction fails at random" which occurs when the secret is created from a base64 string
Copy file name to clipboardexpand all lines: CHANGELOG.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,15 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
-
## [Unreleased]
7
+
## [0.6.0] - 2021-11-25
8
8
### Added
9
9
- Add .NET 6 support
10
10
11
11
### Changed
12
-
- Use RandomNumberGenerator class instead RNGCryptoServiceProvider class to create the polynomial. For details see [dotnet runtime issue 40169](https://github.com/dotnet/runtime/issues/40169)
12
+
- Use RandomNumberGenerator class instead RNGCryptoServiceProvider class to create the polynomial. For details see dotnet runtime issue [40169](https://github.com/dotnet/runtime/issues/40169)
13
13
14
14
### Fixed
15
-
- Fixed bug #60 "Reconstruction fails at random" which occurs when the secret is created from a base64 string
15
+
- Fixed bug [#60](https://github.com/shinji-san/SecretSharingDotNet/issues/60) "Reconstruction fails at random" which occurs when the secret is created from a base64 string
<PackageReleaseNotes>This version introduces a 'shares' return type for the split method. The 'tuple' return type is obsolete.</PackageReleaseNotes>
12
+
<PackageReleaseNotes>Added support for .NET 6. Removed .NET Core 2.1 (LTS) support. Uses RandomNumberGenerator class instead RNGCryptoServiceProvider class to create the polynomial. Fixed bug #60 "Reconstruction fails at random" (base64 only).</PackageReleaseNotes>
13
13
<PackageDescription>An C# implementation of Shamir's Secret Sharing</PackageDescription>
0 commit comments