Expand description
Fixed-size array types with const generics for type-safe cryptographic operations.
This module provides zero-cost abstractions over fixed-size byte arrays commonly used in cryptographic operations. All types use const generics for compile-time size checking.
Structs§
- Fixed
Bytes - Generic fixed-size byte array with const generic size.
Type Aliases§
- Blake3
Hash - BLAKE3 hash (32 bytes / 256 bits)
- Ed25519
Public Key - Ed25519 public key (32 bytes / 256 bits)
- Ed25519
Signature - Ed25519 signature (64 bytes / 512 bits)
- Nonce32
- Challenge nonce (32 bytes / 256 bits)
- Sha256
Hash - SHA-256 hash (32 bytes / 256 bits)
- Sha512
Hash - SHA-512 hash (64 bytes / 512 bits)