pub struct SignedData { /* private fields */ }
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§
Source§impl SignedData
impl SignedData
Sourcepub fn parse_ber(data: &[u8]) -> Result<Self, CmsError>
pub fn parse_ber(data: &[u8]) -> Result<Self, CmsError>
Construct an instance by parsing BER data.
Sourcepub fn message_digest_with_algorithm(&self, alg: DigestAlgorithm) -> Digest
pub fn message_digest_with_algorithm(&self, alg: DigestAlgorithm) -> Digest
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()
.
Sourcepub fn signed_content(&self) -> Option<&[u8]>
pub fn signed_content(&self) -> Option<&[u8]>
Obtain encapsulated content that was signed.
This is the defined encapContentInfo cContent
value.
pub fn certificates( &self, ) -> Box<dyn Iterator<Item = &CapturedX509Certificate> + '_>
Sourcepub fn signers(&self) -> impl Iterator<Item = &SignerInfo>
pub fn signers(&self) -> impl Iterator<Item = &SignerInfo>
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§
Source§impl Clone for SignedData
impl Clone for SignedData
Source§fn clone(&self) -> SignedData
fn clone(&self) -> SignedData
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for SignedData
impl Debug for SignedData
Source§impl TryFrom<&SignedData> for SignedData
impl TryFrom<&SignedData> for SignedData
Auto Trait Implementations§
impl Freeze for SignedData
impl RefUnwindSafe for SignedData
impl Send for SignedData
impl Sync for SignedData
impl Unpin for SignedData
impl UnwindSafe for SignedData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)