2022-04-05 11:13:34 +00:00
|
|
|
/*
|
2022-12-29 10:46:18 +00:00
|
|
|
Package frostfsecdsa collects ECDSA primitives for FrostFS cryptography.
|
2022-04-05 11:13:34 +00:00
|
|
|
|
2022-04-19 08:22:43 +00:00
|
|
|
Signer and PublicKey support ECDSA signature algorithm with SHA-512 hashing.
|
|
|
|
SignerRFC6979 and PublicKeyRFC6979 implement signature algorithm described in RFC 6979.
|
2022-12-13 14:36:35 +00:00
|
|
|
All these types provide corresponding interfaces from frostfscrypto package.
|
2022-04-05 11:13:34 +00:00
|
|
|
|
2022-12-13 14:36:35 +00:00
|
|
|
Package import causes registration of next signature schemes via frostfscrypto.RegisterScheme:
|
|
|
|
- frostfscrypto.ECDSA_SHA512
|
|
|
|
- frostfscrypto.ECDSA_DETERMINISTIC_SHA256
|
2022-04-05 11:13:34 +00:00
|
|
|
*/
|
2022-12-13 14:36:35 +00:00
|
|
|
package frostfsecdsa
|