pub struct SpoofedJwks {
pub jwks_json: String,
pub private_key_pem: String,
pub signed_token: Option<String>,
}Expand description
Result of a spoofed JWKS generation
Fields§
§jwks_json: StringThe JWKS JSON (public keys)
private_key_pem: StringThe private key in PEM format
signed_token: Option<String>A JWT token signed with the spoofed key
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SpoofedJwks
impl RefUnwindSafe for SpoofedJwks
impl Send for SpoofedJwks
impl Sync for SpoofedJwks
impl Unpin for SpoofedJwks
impl UnsafeUnpin for SpoofedJwks
impl UnwindSafe for SpoofedJwks
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
Mutably borrows from an owned value. Read more