implement signed session data

This commit is contained in:
2025-12-18 15:11:42 -06:00
parent c24b254b22
commit 88656fefac
23 changed files with 384 additions and 76 deletions

View File

@@ -8,7 +8,7 @@ opaque-ke = { version = "4.0.1",default-features = true, features = [ "std","arg
rand = { version = "0.8.5", features = ["std"] }
sha2 = "0.10.9"
async-trait = "0.1.89"
uuid = { version = "1.19.0", features = ["v4"] }
uuid = { version = "1.19.0", features = ["serde","v4"] }
tokio = { version = "1.48.0", features = ["macros", "rt-multi-thread", "sync"] }
nkode-rs = { path = "nkode-rs" }
zeroize = "1.8.2"
@@ -17,5 +17,10 @@ email_address = "0.2.9"
anyhow = "1.0.100"
serde = { version = "1.0.228", features = ["derive"] }
getset = "0.1.6"
hmac = "0.12.1"
hkdf = "0.12.4"
thiserror = "2.0.17"
bincode = "2.0.1"
postcard = { version = "1.1.3", features = ["use-std"] }