pub struct RsaAdditionalPrime {
pub r: Vec<u8>,
pub d: Vec<u8>,
pub t: Vec<u8>,
}Expand description
Additional prime information for multi-prime RSA keys.
Fields§
§r: Vec<u8>§d: Vec<u8>§t: Vec<u8>Trait Implementations§
Source§impl Clone for RsaAdditionalPrime
impl Clone for RsaAdditionalPrime
Source§fn clone(&self) -> RsaAdditionalPrime
fn clone(&self) -> RsaAdditionalPrime
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<'de> Deserialize<'de> for RsaAdditionalPrime
impl<'de> Deserialize<'de> for RsaAdditionalPrime
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RsaAdditionalPrime
impl RefUnwindSafe for RsaAdditionalPrime
impl Send for RsaAdditionalPrime
impl Sync for RsaAdditionalPrime
impl Unpin for RsaAdditionalPrime
impl UnwindSafe for RsaAdditionalPrime
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