sa.com/rsalabs/pubs/PKCS/html/pkcs-7.html"> PKCS#7. The ASN.1 definition of this structure is
ContentInfo ::= SEQUENCE { contentType ContentType, content [0] EXPLICIT ANY DEFINED BY contentType OPTIONAL } ContentType ::= OBJECT IDENTIFIER
contentType
indicates the type of content. PKCS#7 specifies six content types, of which five are supported: {@link Data data}, {@link SignedData signedData}, {@link EnvelopedData envelopedData}, {@link SignedAndEnvelopedData signedAndEnvelopedData}, and {@link EncryptedData encryptedData}. All of these content types have registered OIDs.
The ContentInfo
is also the general syntax of a complete PKCS#7 structure.
@author Volker Roth
@version "$Id: ContentInfo.java,v 1.4 2000/12/07 13:21:52 vroth Exp $"