Struct pkcs1::OtherPrimeInfo
source · pub struct OtherPrimeInfo<'a> {
pub prime: UIntBytes<'a>,
pub exponent: UIntBytes<'a>,
pub coefficient: UIntBytes<'a>,
}
Expand description
PKCS#1 OtherPrimeInfo as defined in RFC 8017 Appendix 1.2.
ASN.1 structure containing an additional prime in a multi-prime RSA key.
OtherPrimeInfo ::= SEQUENCE {
prime INTEGER, -- ri
exponent INTEGER, -- di
coefficient INTEGER -- ti
}
Fields§
§prime: UIntBytes<'a>
Prime factor r_i
of n
, where i
>= 3.
exponent: UIntBytes<'a>
Exponent: d_i = d mod (r_i - 1)
.
coefficient: UIntBytes<'a>
CRT coefficient: t_i = (r_1 * r_2 * ... * r_(i-1))^(-1) mod r_i
.
Trait Implementations§
source§impl<'a> Clone for OtherPrimeInfo<'a>
impl<'a> Clone for OtherPrimeInfo<'a>
source§fn clone(&self) -> OtherPrimeInfo<'a>
fn clone(&self) -> OtherPrimeInfo<'a>
Returns a copy 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<'a> Decodable<'a> for OtherPrimeInfo<'a>
impl<'a> Decodable<'a> for OtherPrimeInfo<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for OtherPrimeInfo<'a>
impl<'a> Send for OtherPrimeInfo<'a>
impl<'a> Sync for OtherPrimeInfo<'a>
impl<'a> Unpin for OtherPrimeInfo<'a>
impl<'a> UnwindSafe for OtherPrimeInfo<'a>
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
source§impl<T> Encodable for Twhere
T: EncodeValue + Tagged,
impl<T> Encodable for Twhere
T: EncodeValue + Tagged,
source§fn encoded_len(&self) -> Result<Length, Error>
fn encoded_len(&self) -> Result<Length, Error>
Compute the length of this value in bytes when encoded as ASN.1 DER.
source§fn encode(&self, encoder: &mut Encoder<'_>) -> Result<(), Error>
fn encode(&self, encoder: &mut Encoder<'_>) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided Encoder
.
source§fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
fn encode_to_slice<'a>(&self, buf: &'a mut [u8]) -> Result<&'a [u8], Error>
Encode this value to the provided byte slice, returning a sub-slice
containing the encoded message.