dcrypt-sign 4.0.1

Digital Signature Schemes for the dcrypt library
Documentation
1
2
3
4
5
6
7
8
9
10
//! Public Ed25519 encoding sizes.

/// Size of Ed25519 public keys in bytes.
pub const ED25519_PUBLIC_KEY_SIZE: usize = 32;

/// Size of Ed25519 secret seeds in bytes.
pub const ED25519_SECRET_KEY_SIZE: usize = 32;

/// Size of Ed25519 signatures in bytes.
pub const ED25519_SIGNATURE_SIZE: usize = 64;