cipher-workshop/cipher-core/Cargo.toml
Kristofers Solo f4480ba218
feat(aes): add IV (Initialization Vector) type for CBC mode
Add 128-bit IV type using secret_block! macro with:
    - Parsing from hex/binary/ASCII strings
    - Conversions to/from Block128 for XOR operations
    - Big-endian byte array conversions
2025-12-31 00:45:26 +02:00

16 lines
244 B
TOML

[package]
name = "cipher-core"
version.workspace = true
authors.workspace = true
edition.workspace = true
[dependencies]
thiserror.workspace = true
zeroize.workspace = true
[dev-dependencies]
claims.workspace = true
[lints]
workspace = true