Skip to content
Merged
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
6 changes: 3 additions & 3 deletions crates/ogar-auth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ getrandom = "0.2"
# Argon2id PHC hash+verify — the login-credential path. Password hashing, not
# encryption, so this crate pins argon2 itself rather than going through
# `ogar-encryption`. argon2 0.6 from the AdaWorldAPI/password-hashes fork
# (`ndarray-simd` = block compression on `ndarray::simd::U64x8`); branch pin
# until password-hashes#1 merges.
argon2 = { git = "https://github.com/AdaWorldAPI/password-hashes", branch = "claude/argon2-ndarray-simd", default-features = false, features = ["alloc", "password-hash", "ndarray-simd"] }
# (`ndarray-simd` = block compression on `ndarray::simd::U64x8`;
# password-hashes#1).
argon2 = { git = "https://github.com/AdaWorldAPI/password-hashes", branch = "master", default-features = false, features = ["alloc", "password-hash", "ndarray-simd"] }

[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
6 changes: 3 additions & 3 deletions crates/ogar-encryption/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ encryption = { git = "https://github.com/AdaWorldAPI/ndarray", branch = "master"

# Not in ndarray: `kdf` and `envelope` run here on argon2 0.6
# from the AdaWorldAPI/password-hashes fork. `ndarray-simd` puts the block
# compression on `ndarray::simd::U64x8` (compile-time dispatch, no `unsafe`).
# Branch pin until password-hashes#1 merges.
argon2 = { git = "https://github.com/AdaWorldAPI/password-hashes", branch = "claude/argon2-ndarray-simd", default-features = false, features = ["alloc", "ndarray-simd"] }
# compression on `ndarray::simd::U64x8` (compile-time dispatch, no `unsafe`;
# password-hashes#1).
argon2 = { git = "https://github.com/AdaWorldAPI/password-hashes", branch = "master", default-features = false, features = ["alloc", "ndarray-simd"] }
zeroize = { version = "1", features = ["derive"] }
getrandom = "0.2"

Expand Down
Loading