Struct capsules_extra::public_key_crypto::rsa_keys::RSA4096Keys
source · pub struct RSA4096Keys(/* private fields */);
Implementations§
source§impl RSA4096Keys
impl RSA4096Keys
pub const fn new() -> RSA4096Keys
Trait Implementations§
source§impl PubKey for RSA4096Keys
impl PubKey for RSA4096Keys
source§impl PubPrivKey for RSA4096Keys
impl PubPrivKey for RSA4096Keys
source§impl RsaKey for RSA4096Keys
impl RsaKey for RSA4096Keys
source§fn map_modulus(&self, closure: &dyn Fn(&[u8])) -> Option<()>
fn map_modulus(&self, closure: &dyn Fn(&[u8])) -> Option<()>
Run the specified closure over the modulus, if it exists
The modulus is returned MSB (big endian)
Returns
Some()
if the key exists and the closure was called,
otherwise returns None
.source§fn take_modulus(&self) -> Option<&'static [u8]>
fn take_modulus(&self) -> Option<&'static [u8]>
The the modulus if it exists.
The modulus is returned MSB (big endian)
Returns
Some()
if the key exists otherwise returns None
.
The modulus can be returned by calling import_public_key()
with
the output of this function.source§fn public_exponent(&self) -> Option<u32>
fn public_exponent(&self) -> Option<u32>
Returns the public exponent of the key pair if it exists
source§impl RsaPrivKey for RSA4096Keys
impl RsaPrivKey for RSA4096Keys
source§fn map_exponent(&self, closure: &dyn Fn(&[u8])) -> Option<()>
fn map_exponent(&self, closure: &dyn Fn(&[u8])) -> Option<()>
Returns the specified closure over the private exponent, if it exists
The exponent is returned MSB (big endian)
Returns
Some()
if the key exists and the closure was called,
otherwise returns None
.source§fn take_exponent(&self) -> Option<&'static [u8]>
fn take_exponent(&self) -> Option<&'static [u8]>
The the private exponent if it exists.
The exponent is returned MSB (big endian)
Returns
Some()
if the key exists otherwise returns None
.
The exponent can be returned by calling import_private_key()
with
the output of this function.Auto Trait Implementations§
impl !Freeze for RSA4096Keys
impl !RefUnwindSafe for RSA4096Keys
impl Send for RSA4096Keys
impl !Sync for RSA4096Keys
impl Unpin for RSA4096Keys
impl !UnwindSafe for RSA4096Keys
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