Implement proper key types

Signed-off-by: Lee Smet <lee.smet@hotmail.com>
This commit is contained in:
Lee Smet
2025-05-13 17:37:33 +02:00
parent dfe6c91273
commit e44ee83e74
43 changed files with 4180 additions and 7 deletions

15
vault/Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "vault"
version = "0.1.0"
edition = "2024"
[dependencies]
getrandom = { version = "0.3.3", features = ["wasm_js"] }
rand = "0.9.1"
# We need to pull v0.2.x to enable the "js" feature for wasm32 builds
getrandom_old = { package = "getrandom", version = "0.2.16", features = ["js"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
chacha20poly1305 = "0.10.1"
k256 = { version = "0.13.4", features = ["ecdh"] }
sha2 = "0.10.9"