pub struct PS512PublicKey { /* private fields */ }Implementations§
Source§impl PS512PublicKey
impl PS512PublicKey
pub fn from_der(der: &[u8]) -> Result<Self, Error>
pub fn from_pem(pem: &str) -> Result<Self, Error>
pub fn from_components(n: &[u8], e: &[u8]) -> Result<Self, Error>
pub fn to_der(&self) -> Result<Vec<u8>, Error>
pub fn to_pem(&self) -> Result<String, Error>
pub fn to_components(&self) -> RSAPublicKeyComponents
pub fn with_key_id(self, key_id: &str) -> Self
pub fn sha1_thumbprint(&self) -> String
pub fn sha256_thumbprint(&self) -> String
Trait Implementations§
Source§impl Clone for PS512PublicKey
impl Clone for PS512PublicKey
Source§fn clone(&self) -> PS512PublicKey
fn clone(&self) -> PS512PublicKey
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PS512PublicKey
impl Debug for PS512PublicKey
Source§impl RSAPublicKeyLike for PS512PublicKey
impl RSAPublicKeyLike for PS512PublicKey
fn jwt_alg_name() -> &'static str
fn hash() -> MessageDigest
fn padding_scheme(&self) -> Padding
fn public_key(&self) -> &RSAPublicKey
fn key_id(&self) -> &Option<String>
fn set_key_id(&mut self, key_id: String)
fn verify_token<CustomClaims: DeserializeOwned>( &self, token: &str, options: Option<VerificationOptions>, ) -> Result<JWTClaims<CustomClaims>, Error>
Auto Trait Implementations§
impl Freeze for PS512PublicKey
impl RefUnwindSafe for PS512PublicKey
impl Send for PS512PublicKey
impl Sync for PS512PublicKey
impl Unpin for PS512PublicKey
impl UnsafeUnpin for PS512PublicKey
impl UnwindSafe for PS512PublicKey
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