2022-04-05 14:13:34 +03:00
|
|
|
/*
|
2022-12-29 13:46:18 +03:00
|
|
|
Package frostfsecdsa collects ECDSA primitives for FrostFS cryptography.
|
2022-04-05 14:13:34 +03:00
|
|
|
|
2022-04-19 11:22:43 +03: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 17:36:35 +03:00
|
|
|
All these types provide corresponding interfaces from frostfscrypto package.
|
2022-04-05 14:13:34 +03:00
|
|
|
|
2022-12-13 17:36:35 +03:00
|
|
|
Package import causes registration of next signature schemes via frostfscrypto.RegisterScheme:
|
|
|
|
- frostfscrypto.ECDSA_SHA512
|
|
|
|
- frostfscrypto.ECDSA_DETERMINISTIC_SHA256
|
2022-04-05 14:13:34 +03:00
|
|
|
*/
|
2022-12-13 17:36:35 +03:00
|
|
|
package frostfsecdsa
|