pub struct OtherPrimeInfo<'a> {
pub prime: UIntRef<'a>,
pub exponent: UIntRef<'a>,
pub coefficient: UIntRef<'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: UIntRef<'a>
Prime factor r_i
of n
, where i
>= 3.
exponent: UIntRef<'a>
Exponent: d_i = d mod (r_i - 1)
.
coefficient: UIntRef<'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> DecodeValue<'a> for OtherPrimeInfo<'a>
impl<'a> DecodeValue<'a> for OtherPrimeInfo<'a>
Source§fn decode_value<R: Reader<'a>>(reader: &mut R, header: Header) -> Result<Self>
fn decode_value<R: Reader<'a>>(reader: &mut R, header: Header) -> Result<Self>
Attempt to decode this message using the provided [
Reader
].Auto Trait Implementations§
impl<'a> Freeze for OtherPrimeInfo<'a>
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
§impl<'a, T> Choice<'a> for Twhere
T: Decode<'a> + FixedTag,
impl<'a, T> Choice<'a> for Twhere
T: Decode<'a> + FixedTag,
§fn can_decode(tag: Tag) -> bool
fn can_decode(tag: Tag) -> bool
Is the provided [
Tag
] decodable as a variant of this CHOICE
?Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
impl<'a, T> Decode<'a> for Twhere
T: DecodeValue<'a> + FixedTag,
§impl<T> Encode for Twhere
T: EncodeValue + Tagged,
impl<T> Encode for Twhere
T: EncodeValue + Tagged,
§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.
§fn encode(&self, writer: &mut dyn Writer) -> Result<(), Error>
fn encode(&self, writer: &mut dyn Writer) -> Result<(), Error>
Encode this value as ASN.1 DER using the provided [Writer
].
§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.
§fn encode_to_vec(&self, buf: &mut Vec<u8>) -> Result<Length, Error>
fn encode_to_vec(&self, buf: &mut Vec<u8>) -> Result<Length, Error>
Encode this message as ASN.1 DER, appending it to the provided
byte vector.