Struct cryptographic_message_syntax::SignedData [−][src]
pub struct SignedData { /* fields omitted */ }
Expand description
Represents a CMS SignedData structure.
This is the high-level type representing a CMS signature of some data. It contains a description of what was signed, the cryptographic signature of what was signed, and likely the X.509 certificate chain for the signing key.
This is a high-level data structure that ultimately gets (de)serialized from/to ASN.1. It exists to facilitate common interactions with the low-level ASN.1 without exposing the complexity of ASN.1.
Implementations
Construct an instance by parsing BER data.
Compute the digest of the encapsulated content using a specified algorithm.
The returned value is likely used as the message-digest
attribute type
for use within signed attributes.
You can get the raw bytes of the digest by calling its .as_ref()
.
Obtain encapsulated content that was signed.
This is the defined encapContentInfo cContent
value.
Obtain signing information attached to this instance.
Each iterated value represents an entity that cryptographically signed the content. Use these objects to validate the signed data.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SignedData
impl Send for SignedData
impl Sync for SignedData
impl Unpin for SignedData
impl UnwindSafe for SignedData
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more