Skip to content

v0.8.0

Compare
Choose a tag to compare
@shinji-san shinji-san released this 05 Jul 18:39
· 346 commits to main since this release
881bd92

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