12 lines
515 B
Go
12 lines
515 B
Go
/*
|
|
Package frostfsecdsa collects ECDSA primitives for FrostFS cryptography.
|
|
|
|
Signer and PublicKey support ECDSA signature algorithm with SHA-512 hashing.
|
|
SignerRFC6979 and PublicKeyRFC6979 implement signature algorithm described in RFC 6979.
|
|
All these types provide corresponding interfaces from frostfscrypto package.
|
|
|
|
Package import causes registration of next signature schemes via frostfscrypto.RegisterScheme:
|
|
- frostfscrypto.ECDSA_SHA512
|
|
- frostfscrypto.ECDSA_DETERMINISTIC_SHA256
|
|
*/
|
|
package frostfsecdsa
|