Struct kmip_protocol::types::common::TransparentRSAPrivateKey [−][src]
pub struct TransparentRSAPrivateKey {
pub modulus: Vec<u8>,
pub private_exponent: Option<Vec<u8>>,
pub public_exponent: Option<Vec<u8>>,
pub p: Option<Vec<u8>>,
pub q: Option<Vec<u8>>,
pub prime_exponent_p: Option<Vec<u8>>,
pub prime_exponent_q: Option<Vec<u8>>,
pub crt_coefficient: Option<Vec<u8>>,
}
Expand description
See KMIP 1.0 section 2.1.7.4 Transparent RSA Private Key.
Fields
modulus: Vec<u8>
private_exponent: Option<Vec<u8>>
public_exponent: Option<Vec<u8>>
p: Option<Vec<u8>>
q: Option<Vec<u8>>
prime_exponent_p: Option<Vec<u8>>
prime_exponent_q: Option<Vec<u8>>
crt_coefficient: Option<Vec<u8>>
Trait Implementations
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for TransparentRSAPrivateKey
impl Send for TransparentRSAPrivateKey
impl Sync for TransparentRSAPrivateKey
impl Unpin for TransparentRSAPrivateKey
impl UnwindSafe for TransparentRSAPrivateKey
Blanket Implementations
Mutably borrows from an owned value. Read more