Skip to content

Cryptographic Primitives

Juvix imports

module node_architecture.types.crypto;

import prelude open;

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;