Package org.bouncycastle.cms
Class CMSAuthenticatedData
java.lang.Object
org.bouncycastle.cms.CMSAuthenticatedData
- All Implemented Interfaces:
org.bouncycastle.util.Encodable
containing class for an CMS Authenticated Data object
-
Constructor Summary
ConstructorsConstructorDescriptionCMSAuthenticatedData
(byte[] authData) CMSAuthenticatedData
(byte[] authData, DigestCalculatorProvider digestCalculatorProvider) CMSAuthenticatedData
(InputStream authData) CMSAuthenticatedData
(InputStream authData, DigestCalculatorProvider digestCalculatorProvider) CMSAuthenticatedData
(org.bouncycastle.asn1.cms.ContentInfo contentInfo) CMSAuthenticatedData
(org.bouncycastle.asn1.cms.ContentInfo contentInfo, DigestCalculatorProvider digestCalculatorProvider) -
Method Summary
Modifier and TypeMethodDescriptionorg.bouncycastle.asn1.cms.AttributeTable
return a table of the digested attributes indexed by the OID of the attribute.byte[]
org.bouncycastle.asn1.cms.ContentInfo
Deprecated.use toASN1Structure()byte[]
return the ASN.1 encoded representation of this object.byte[]
getMac()
return the object identifier for the content MAC algorithm.org.bouncycastle.asn1.x509.AlgorithmIdentifier
Return the MAC algorithm details for the MAC associated with the data in this object.byte[]
return the ASN.1 encoded MAC algorithm parameters, or null if there aren't any.Return the originator information associated with this message if present.return a store of the intended recipients for this messageorg.bouncycastle.asn1.cms.AttributeTable
return a table of the undigested attributes indexed by the OID of the attribute.org.bouncycastle.asn1.cms.ContentInfo
return the ContentInfo
-
Constructor Details
-
CMSAuthenticatedData
- Throws:
CMSException
-
CMSAuthenticatedData
public CMSAuthenticatedData(byte[] authData, DigestCalculatorProvider digestCalculatorProvider) throws CMSException - Throws:
CMSException
-
CMSAuthenticatedData
- Throws:
CMSException
-
CMSAuthenticatedData
public CMSAuthenticatedData(InputStream authData, DigestCalculatorProvider digestCalculatorProvider) throws CMSException - Throws:
CMSException
-
CMSAuthenticatedData
- Throws:
CMSException
-
CMSAuthenticatedData
public CMSAuthenticatedData(org.bouncycastle.asn1.cms.ContentInfo contentInfo, DigestCalculatorProvider digestCalculatorProvider) throws CMSException - Throws:
CMSException
-
-
Method Details
-
getOriginatorInfo
Return the originator information associated with this message if present.- Returns:
- OriginatorInformation, null if not present.
-
getMac
public byte[] getMac() -
getMacAlgorithm
public org.bouncycastle.asn1.x509.AlgorithmIdentifier getMacAlgorithm()Return the MAC algorithm details for the MAC associated with the data in this object.- Returns:
- AlgorithmIdentifier representing the MAC algorithm.
-
getMacAlgOID
return the object identifier for the content MAC algorithm. -
getMacAlgParams
public byte[] getMacAlgParams()return the ASN.1 encoded MAC algorithm parameters, or null if there aren't any. -
getRecipientInfos
return a store of the intended recipients for this message -
getContentInfo
public org.bouncycastle.asn1.cms.ContentInfo getContentInfo()Deprecated.use toASN1Structure()return the ContentInfo -
toASN1Structure
public org.bouncycastle.asn1.cms.ContentInfo toASN1Structure()return the ContentInfo -
getAuthAttrs
public org.bouncycastle.asn1.cms.AttributeTable getAuthAttrs()return a table of the digested attributes indexed by the OID of the attribute. -
getUnauthAttrs
public org.bouncycastle.asn1.cms.AttributeTable getUnauthAttrs()return a table of the undigested attributes indexed by the OID of the attribute. -
getEncoded
return the ASN.1 encoded representation of this object.- Specified by:
getEncoded
in interfaceorg.bouncycastle.util.Encodable
- Throws:
IOException
-
getContentDigest
public byte[] getContentDigest()
-