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 #80 from shinji-san/release-v0.8.0
Release v0.8.0
Added
- Added more examples in the section Usage of the README.md file to explain the use of shares and the use of the new type casting from byte array to secret and vice versa.
- Added method MakeShares(TNumber numberOfMinimumShares, TNumber numberOfShares, int securityLevel)
- Added method MakeShares(TNumber numberOfMinimumShares, TNumber numberOfShares, Secret<TNumber> secret, int securityLevel)
- Added localization for exception messages in English and German languages
Changed
- Changed existing examples in the section Usage of the README.md file to explain the use and the type casting of recovered secrets.
- Minify NuGet package README.md
- Changed ctor ShamirsSecretSharing(IExtendedGcdAlgorithm<TNumber> extendedGcd). This ctor sets the SecurityLevel to 13.
Deprecated
- Ctor ShamirsSecretSharing(IExtendedGcdAlgorithm<TNumber> extendedGcd, int securityLevel) is deprecated.
- Method MakeShares(TNumber numberOfMinimumShares, TNumber numberOfShares) is deprecated.
- Shares to tuple type casting is obsolete and will be remove in the next release.
- Shares.Item1 property is obsolete and will be remove in the next release.
- Shares.Item2 property is obsolete and will be remove in the next release.
Removed
- Removed .NET 5 support, because it retires on May 10, 2022. See Microsoft .NET and .NET Core - Support Dates.
Resolves: No entry
Copy file name to clipboardexpand all lines: CHANGELOG.md
+27-1
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,28 @@ 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
+
## [0.8.0] - 2022-07-05
8
+
### Added
9
+
- Added more examples in the section *Usage* of the `README.md` file to explain the use of shares and the use of the new type casting from byte array to secret and vice versa.
10
+
- Added method `MakeShares(TNumber numberOfMinimumShares, TNumber numberOfShares, int securityLevel)`
- Added localization for exception messages in English and German languages
13
+
14
+
### Changed
15
+
- Changed existing examples in the section *Usage* of the `README.md` file to explain the use and the type casting of recovered secrets.
16
+
- Minify NuGet package README.md
17
+
- Changed ctor `ShamirsSecretSharing(IExtendedGcdAlgorithm<TNumber> extendedGcd)`. This ctor sets the SecurityLevel to 13.
18
+
19
+
### Deprecated
20
+
- Ctor `ShamirsSecretSharing(IExtendedGcdAlgorithm<TNumber> extendedGcd, int securityLevel)` is deprecated.
21
+
- Method `MakeShares(TNumber numberOfMinimumShares, TNumber numberOfShares)` is deprecated.
22
+
- Shares to tuple type casting is obsolete and will be remove in the next release.
23
+
- Shares.Item1 property is obsolete and will be remove in the next release.
24
+
- Shares.Item2 property is obsolete and will be remove in the next release.
25
+
26
+
### Removed
27
+
- Removed .NET 5 support, because it retires on May 10, 2022. See [Microsoft .NET and .NET Core - Support Dates](https://docs.microsoft.com/en-us/lifecycle/products/microsoft-net-and-net-core).
28
+
7
29
## [0.7.0] - 2022-02-09
8
30
### Added
9
31
- Added implicit casts for byte arrays in *Secret* class.
@@ -104,7 +126,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
0 commit comments