diff --git a/Cargo.toml b/Cargo.toml index 4325089d45..c95706074e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,10 +75,8 @@ branch = "wire/unstable-pq-xyber" [patch.crates-io.wire-e2e-identity] package = "wire-e2e-identity" -# tag = "v0.8.6" git = "https://github.com/wireapp/rusty-jwt-tools" -#branch = "main" -rev = "eff780d0" +branch = "main" [patch.crates-io.x509-cert] git = "https://github.com/otak/formats" diff --git a/crypto/Cargo.toml b/crypto/Cargo.toml index 38f39915b9..1a02c5a4ad 100644 --- a/crypto/Cargo.toml +++ b/crypto/Cargo.toml @@ -44,7 +44,7 @@ async-trait = "0.1" async-lock = "3.0" schnellru = "0.2" zeroize = "1.5" -wire-e2e-identity = { version = "0.8", default-features = false } +wire-e2e-identity = { version = "0.9", default-features = false } indexmap = "2" x509-cert = "0.2" pem = "3.0" @@ -102,7 +102,7 @@ async-std = { version = "1.12", features = ["attributes"] } futures-util = { version = "0.3", features = ["std", "alloc"] } proteus-traits = "2.0" async-trait = "0.1" -wire-e2e-identity = { version = "0.8", default-features = false } +wire-e2e-identity = { version = "0.9", default-features = false } fluvio-wasm-timer = "0.2" time = { version = "0.3", features = ["wasm-bindgen"] } diff --git a/crypto/src/e2e_identity/mod.rs b/crypto/src/e2e_identity/mod.rs index 7c0291dfa4..fb08a85a88 100644 --- a/crypto/src/e2e_identity/mod.rs +++ b/crypto/src/e2e_identity/mod.rs @@ -322,6 +322,7 @@ impl E2eiEnrollment { }; Ok(self.new_dpop_token( &self.client_id, + self.display_name.as_str(), challenge, backend_nonce, self.handle.as_str(), diff --git a/mls-provider/Cargo.toml b/mls-provider/Cargo.toml index b7cbaee567..d2b8ffac29 100644 --- a/mls-provider/Cargo.toml +++ b/mls-provider/Cargo.toml @@ -34,7 +34,7 @@ p384 = { version = "0.13", features = ["pkcs8"] } hkdf = "0.12" spki = { version = "0.7", features = ["pem", "fingerprint"] } x509-cert = { version = "0.2", features = ["builder", "hazmat"] } -wire-e2e-identity = { version = "0.8", default-features = false } +wire-e2e-identity = { version = "0.9", default-features = false } fluvio-wasm-timer = "0.2" rand = { version = "0.8", features = ["getrandom"] } getrandom = { version = "0.2", features = ["js"] }