Struct cryptographic_message_syntax::asn1::rfc5652::SignerInfo
source · pub struct SignerInfo {
pub version: CmsVersion,
pub sid: SignerIdentifier,
pub digest_algorithm: DigestAlgorithmIdentifier,
pub signed_attributes: Option<SignedAttributes>,
pub signature_algorithm: SignatureAlgorithmIdentifier,
pub signature: SignatureValue,
pub unsigned_attributes: Option<UnsignedAttributes>,
pub signed_attributes_data: Option<Vec<u8>>,
}
Expand description
Per-signer information.
SignerInfo ::= SEQUENCE {
version CMSVersion,
sid SignerIdentifier,
digestAlgorithm DigestAlgorithmIdentifier,
signedAttrs [0] IMPLICIT SignedAttributes OPTIONAL,
signatureAlgorithm SignatureAlgorithmIdentifier,
signature SignatureValue,
unsignedAttrs [1] IMPLICIT UnsignedAttributes OPTIONAL }
Fields§
§version: CmsVersion
§sid: SignerIdentifier
§digest_algorithm: DigestAlgorithmIdentifier
§signed_attributes: Option<SignedAttributes>
§signature_algorithm: SignatureAlgorithmIdentifier
§signature: SignatureValue
§unsigned_attributes: Option<UnsignedAttributes>
§signed_attributes_data: Option<Vec<u8>>
Raw bytes backing signed attributes data.
Does not include constructed tag or length bytes.
Implementations§
source§impl SignerInfo
impl SignerInfo
pub fn take_opt_from<S: Source>( cons: &mut Constructed<'_, S> ) -> Result<Option<Self>, DecodeError<S::Error>>
pub fn from_sequence<S: Source>( cons: &mut Constructed<'_, S> ) -> Result<Self, DecodeError<S::Error>>
pub fn encode_ref(&self) -> impl Values + '_
sourcepub fn signed_attributes_digested_content(
&self
) -> Result<Option<Vec<u8>>, Error>
pub fn signed_attributes_digested_content( &self ) -> Result<Option<Vec<u8>>, Error>
Obtain content representing the signed attributes data to be digested.
Computing the content to go into the digest calculation is nuanced. From RFC 5652:
The result of the message digest calculation process depends on
whether the signedAttrs field is present. When the field is absent,
the result is just the message digest of the content as described
above. When the field is present, however, the result is the message
digest of the complete DER encoding of the SignedAttrs value
contained in the signedAttrs field. Since the SignedAttrs value,
when present, must contain the content-type and the message-digest
attributes, those values are indirectly included in the result. The
content-type attribute MUST NOT be included in a countersignature
unsigned attribute as defined in Section 11.4. A separate encoding
of the signedAttrs field is performed for message digest calculation.
The IMPLICIT [0]
tag in the signedAttrs is not used for the DER
encoding, rather an EXPLICIT SET OF tag is used. That is, the DER
encoding of the EXPLICIT SET OF tag, rather than of the IMPLICIT [0]
tag, MUST be included in the message digest calculation along with
the length and content octets of the SignedAttributes value.
A few things to note here:
- We must ensure DER (not BER) encoding of the entire SignedAttrs values.
- The SignedAttr tag must use
EXPLICIT SET OF
instead ofIMPLICIT [0]
, so default encoding is not appropriate. - If this instance came into existence via a parse, we stashed away the raw bytes constituting SignedAttributes to ensure we can do a lossless copy.
Trait Implementations§
source§impl Clone for SignerInfo
impl Clone for SignerInfo
source§fn clone(&self) -> SignerInfo
fn clone(&self) -> SignerInfo
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SignerInfo
impl Debug for SignerInfo
source§impl PartialEq for SignerInfo
impl PartialEq for SignerInfo
source§fn eq(&self, other: &SignerInfo) -> bool
fn eq(&self, other: &SignerInfo) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<&SignerInfo> for SignerInfo
impl TryFrom<&SignerInfo> for SignerInfo
source§impl Values for SignerInfo
impl Values for SignerInfo
source§fn encoded_len(&self, mode: Mode) -> usize
fn encoded_len(&self, mode: Mode) -> usize
source§fn write_encoded<W: Write>(
&self,
mode: Mode,
target: &mut W
) -> Result<(), Error>
fn write_encoded<W: Write>( &self, mode: Mode, target: &mut W ) -> Result<(), Error>
target
.source§fn explicit(self, tag: Tag) -> Constructed<Self>where
Self: Sized,
fn explicit(self, tag: Tag) -> Constructed<Self>where
Self: Sized,
source§fn to_captured(&self, mode: Mode) -> Captured
fn to_captured(&self, mode: Mode) -> Captured
impl Eq for SignerInfo
impl StructuralEq for SignerInfo
impl StructuralPartialEq for SignerInfo
Auto Trait Implementations§
impl RefUnwindSafe for SignerInfo
impl Send for SignerInfo
impl Sync for SignerInfo
impl Unpin for SignerInfo
impl UnwindSafe for SignerInfo
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.