You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This function is exclusively used in the tests and previously the
team was defaulting to always be None, which will now fail because
of to the more strict team comparision introduced in the previous
commit.
Copy file name to clipboardExpand all lines: jwt/src/access/verify.rs
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,7 @@ impl RustyJwtTools {
29
29
/// of base64url characters (header, claims, signature) separated by period characters.
30
30
/// ex: b"eyJ0eXAiOiJKV1QiLA0KICJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJqb2UiLA0KICJleiOjEzMDA4MTkzODAsDQogImh0dHA6Ly9leGFtcGxlLmNvbS9pc19yb290Ijp0cnVlfQ.dBjftJeZ4CVP-mB92K27uhbUJU1p1r_wW1gFWFOEjXk" (whitespace in the example is not included in the actual proof)
31
31
/// * `client_id` - see [ClientId]
32
+
/// * `team` - see [Team]
32
33
/// * `challenge` - The most recent challenge nonce provided by the ACME server to the current client ex: hex!("71515234fac0b04b2008db62551e7287")
33
34
/// * `max_skew_secs` - The maximum number of seconds of clock skew the implementation will allow ex: 360 (5 min)
34
35
/// * `max_expiration` - The maximal expiration date and time, in seconds since epoch ex: 1668987368
0 commit comments