pub struct StandardClaims {
pub iss: Url,
pub aud: SingleOrMultiple<String>,
pub exp: i64,
pub iat: i64,
pub auth_time: Option<i64>,
pub nonce: Option<String>,
pub acr: Option<String>,
pub amr: Option<Vec<String>>,
pub azp: Option<String>,
pub userinfo: Userinfo,
/* private fields */
}Expand description
ID Token contents. See spec.
Fields§
§iss: UrlIssuer Identifier for the Issuer of the response.
The iss value is a case-sensitive URL using the https scheme that
contains scheme, host, and optionally, port number and path components
and no query or fragment components.
aud: SingleOrMultiple<String>Audience(s) that this ID Token is intended for.
It MUST contain the OAuth 2.0 client_id of the Relying Party as an
audience value. It MAY also contain identifiers for other audiences. In
the general case, the aud value is an array of case-sensitive strings.
In the common special case when there is one audience, the aud value
MAY be a single case-sensitive string.
exp: i64Expiration time on or after which the ID Token MUST NOT be accepted by the RP when performing authentication with the OP.
The processing of this parameter requires that the current date/time
MUST be before the expiration date/time listed in the value.
Implementers MAY provide for some small leeway, usually no more than a
few minutes, to account for clock skew. Its value is a JSON [RFC8259]
number representing the number of seconds from 1970-01-01T00:00:00Z as
measured in UTC until the date/time. See RFC 3339 [RFC3339] for details
regarding date/times in general and UTC in particular. NOTE: The ID
Token expiration time is unrelated the lifetime of the authenticated
session between the RP and the OP.
iat: i64Time at which the JWT was issued.
Its value is a JSON number representing the number of seconds from
1970-01-01T00:00:00Z as measured in UTC until the date/time.
auth_time: Option<i64>Time when the End-User authentication occurred.
Its value is a JSON number representing the number of seconds from
1970-01-01T00:00:00Z as measured in UTC until the date/time. When a
max_age request is made or when auth_time is requested as an
Essential Claim, then this Claim is REQUIRED; otherwise, its inclusion
is OPTIONAL. (The auth_time Claim semantically corresponds to the
OpenID 2.0 PAPE [OpenID.PAPE] auth_time response parameter.)
nonce: Option<String>String value used to associate a Client session with an ID Token, and to mitigate replay attacks.
The value is passed through unmodified from the Authentication Request
to the ID Token. If present in the ID Token, Clients MUST verify that
the nonce Claim Value is equal to the value of the nonce parameter
sent in the Authentication Request. If present in the Authentication
Request, Authorization Servers MUST include a nonce Claim in the ID
Token with the Claim Value being the nonce value sent in the
Authentication Request. Authorization Servers SHOULD perform no other
processing on nonce values used. The nonce value is a case-sensitive
string.
acr: Option<String>Authentication Context Class Reference.
String specifying an Authentication Context Class Reference value that
identifies the Authentication Context Class that the authentication
performed satisfied. The value “0” indicates the End-User authentication
did not meet the requirements of ISO/IEC 29115 [ISO29115] level 1. For
historic reasons, the value “0” is used to indicate that there is no
confidence that the same person is actually there. Authentications with
level 0 SHOULD NOT be used to authorize access to any resource of any
monetary value. (This corresponds to the OpenID 2.0 PAPE [OpenID.PAPE]
nist_auth_level 0.) An absolute URI or an RFC 6711 [RFC6711]
registered name SHOULD be used as the acr value; registered names MUST
NOT be used with a different meaning than that which is registered.
Parties using this claim will need to agree upon the meanings of the
values used, which may be context specific. The acr value is a
case-sensitive string.
amr: Option<Vec<String>>Authentication Methods References.
JSON array of strings that are identifiers for authentication methods
used in the authentication. For instance, values might indicate that
both password and OTP authentication methods were used. The amr value
is an array of case-sensitive strings. Values used in the amr Claim
SHOULD be from those registered in the IANA Authentication Method
Reference Values registry [IANA.AMR] established by [RFC8176]; parties
using this claim will need to agree upon the meanings of any
unregistered values used, which may be context specific.
azp: Option<String>Authorized party - the party to which the ID Token was issued. If
present, it MUST contain the OAuth 2.0 Client ID of this party. The
azp value is a case-sensitive string containing a StringOrURI value.
Note that in practice, the azp Claim only occurs when extensions
beyond the scope of this specification are used; therefore,
implementations not using such extensions are encouraged to not use
azp and to ignore it when it does occur.
userinfo: UserinfoThe standard claims.
See Standard Claims
Trait Implementations§
Source§impl Claims for StandardClaims
impl Claims for StandardClaims
Source§fn userinfo(&self) -> &Userinfo
fn userinfo(&self) -> &Userinfo
Source§fn c_hash(&self) -> Option<&String>
fn c_hash(&self) -> Option<&String>
Source§fn at_hash(&self) -> Option<&String>
fn at_hash(&self) -> Option<&String>
Source§fn iss(&self) -> &Url
fn iss(&self) -> &Url
Source§fn sub(&self) -> &str
fn sub(&self) -> &str
Source§fn aud(&self) -> &SingleOrMultiple<String>
fn aud(&self) -> &SingleOrMultiple<String>
Source§fn exp(&self) -> i64
fn exp(&self) -> i64
Source§fn iat(&self) -> i64
fn iat(&self) -> i64
Source§fn auth_time(&self) -> Option<i64>
fn auth_time(&self) -> Option<i64>
Source§fn nonce(&self) -> Option<&String>
fn nonce(&self) -> Option<&String>
Source§fn acr(&self) -> Option<&String>
fn acr(&self) -> Option<&String>
Source§fn amr(&self) -> Option<&Vec<String>>
fn amr(&self) -> Option<&Vec<String>>
Source§fn azp(&self) -> Option<&String>
fn azp(&self) -> Option<&String>
Source§impl Clone for StandardClaims
impl Clone for StandardClaims
Source§fn clone(&self) -> StandardClaims
fn clone(&self) -> StandardClaims
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for StandardClaims
impl Debug for StandardClaims
Source§impl<'de> Deserialize<'de> for StandardClaims
impl<'de> Deserialize<'de> for StandardClaims
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for StandardClaims
impl PartialEq for StandardClaims
Source§impl Serialize for StandardClaims
impl Serialize for StandardClaims
impl CompactJson for StandardClaims
impl Eq for StandardClaims
impl StructuralPartialEq for StandardClaims
Auto Trait Implementations§
impl Freeze for StandardClaims
impl RefUnwindSafe for StandardClaims
impl Send for StandardClaims
impl Sync for StandardClaims
impl Unpin for StandardClaims
impl UnwindSafe for StandardClaims
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> CompactPart for Twhere
T: CompactJson,
impl<T> CompactPart for Twhere
T: CompactJson,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.