forked from TrueCloudLab/frostfs-sdk-go
84888854ab
go1.19 rewrites comments to proper render them in docs. Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
12 lines
501 B
Go
12 lines
501 B
Go
/*
|
|
Package neofsecdsa collects ECDSA primitives for NeoFS 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 neofscrypto package.
|
|
|
|
Package import causes registration of next signature schemes via neofscrypto.RegisterScheme:
|
|
- neofscrypto.ECDSA_SHA512
|
|
- neofscrypto.ECDSA_DETERMINISTIC_SHA256
|
|
*/
|
|
package neofsecdsa
|