Cryptographic Primitives
Cryptographic primitives¶
Public key¶
type PublicKey := Curve25519PubKey;
Private key¶
type PrivateKey := Curve25519PrivKey;
Signature¶
Cryptographic signature.
type Signature := Ed25519Signature;
Digest¶
Message digest. Output of a cryptographic hash function.
type Digest := Blake3Digest;