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
17 changes: 12 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ unicode-normalization = "0.1"
# `ecdh` backs the NIP-44 v2 conversation key (secp256k1 ECDH, x-coordinate
# only, deliberately unhashed) used to seal Nostr gift wraps.
k256 = { version = "0.13", features = ["schnorr", "ecdh"] }
sha2 = "0.10"
sha2 = "0.11"
hkdf = "0.12"
# NIP-44 v2 is encrypt-then-MAC over a raw ChaCha20 stream — not an AEAD — so
# it needs the bare stream cipher and HMAC rather than `chacha20poly1305`.
Expand Down
2 changes: 1 addition & 1 deletion crates/offline-protocol-mls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ base64 = { workspace = true }
hex = "0.4"

# Hashing
sha2 = "0.10"
sha2 = "0.11"

# Ed25519 for signature verification
ed25519-dalek = { version = "3.0", features = ["digest"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/offline-protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ base64 = { workspace = true }
# The Nostr author key is hex on the wire and hex in the discovery record, so
# the comparison that binds the two never crosses an encoding.
hex = { workspace = true }
sha2 = "0.10"
sha2 = "0.11"
chacha20poly1305 = { workspace = true }
rand_core = { workspace = true }
zeroize = { workspace = true }
Expand Down
Loading