Struct jsonwebtoken::Header
[−]
[src]
pub struct Header {
pub alg: Algorithm,
pub jku: Option<String>,
pub kid: Option<String>,
pub x5u: Option<String>,
pub x5t: Option<String>,
// some fields omitted
}A basic JWT header part, the alg defaults to HS256 and typ is automatically
set to JWT. All the other fields are optional
Fields
alg | |
jku | |
kid | |
x5u | |
x5t |