Skip to content

Commit

Permalink
feat: add display name in dpop token
Browse files Browse the repository at this point in the history
  • Loading branch information
beltram committed Feb 19, 2024
1 parent 75d21f7 commit d9891ac
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"] }

Expand Down
1 change: 1 addition & 0 deletions crypto/src/e2e_identity/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down
2 changes: 1 addition & 1 deletion mls-provider/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit d9891ac

Please sign in to comment.