Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 22 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crypto_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dead_code = "allow"
aes-gcm = "0.10"

# AES block cipher (for CTR mode)
aes = { version = "0.8", optional = true }
aes = { version = "0.9", optional = true }

# CTR mode for streaming encryption
ctr = { version = "0.9", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion rust_crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pyo3 = { version = "0.28.2", features = ["extension-module"], optional = true }
# Core cryptography - all audited, production-ready crates
argon2 = "0.5" # Argon2id KDF (password hashing)
aes-gcm = "0.10" # AES-256-GCM AEAD encryption
aes = "0.8" # AES block cipher (for CTR mode)
aes = "0.9" # AES block cipher (for CTR mode)
ctr = "0.9" # CTR mode for streaming encryption
cipher = "0.5" # Cipher traits
hkdf = "0.13" # HKDF key derivation (RFC 5869)
Expand Down
Loading