Virgil Security Crypto library  2.6.3
Public Types | Public Attributes | List of all members
virgil::crypto::foundation::cms::VirgilCMSContent Class Reference

Data object that represent CMS structure: ContentInfo. More...

#include <VirgilCMSContent.h>

Inheritance diagram for virgil::crypto::foundation::cms::VirgilCMSContent:
virgil::crypto::foundation::asn1::VirgilAsn1Compatible

Public Types

enum  Type {
  Data = 0, SignedData, EnvelopedData, DigestedData,
  EncryptedData, AuthenticatedData, SignedAndEnvelopedData, DataWithAttributes,
  EncryptedPrivateKeyInfo
}
 Enumeration of possible CMS Content Types. More...
 

Public Member Functions

VirgilAsn1Compatible implementation
Marshalling format:
ContentInfo ::= SEQUENCE {
contentType ContentType,
content [0] EXPLICIT ANY DEFINED BY contentType
}
ContentType ::= OBJECT IDENTIFIER
virtual size_t asn1Write (virgil::crypto::foundation::asn1::VirgilAsn1Writer &asn1Writer, size_t childWrittenBytes=0) const
 Write object state to the writer. More...
 
virtual void asn1Read (virgil::crypto::foundation::asn1::VirgilAsn1Reader &asn1Reader)
 Read object state from the reader. More...
 
- Public Member Functions inherited from virgil::crypto::foundation::asn1::VirgilAsn1Compatible
virgil::crypto::VirgilByteArray toAsn1 () const
 Save object state to the ASN.1 structure.
 
void fromAsn1 (const virgil::crypto::VirgilByteArray &asn1)
 Restore object state from the ASN.1 structure.
 
virtual ~VirgilAsn1Compatible () noexcept
 Polymorphic destructor.
 

Public Attributes

VirgilCMSContent::Type contentType
 Indicates the type of the associated content.
 
virgil::crypto::VirgilByteArray content
 Associated data.
 

Additional Inherited Members

- Protected Member Functions inherited from virgil::crypto::foundation::asn1::VirgilAsn1Compatible
virtual void checkRequiredField (const VirgilByteArray &param) const
 If given parameter is empty exception will be thrown. More...
 

Detailed Description

Data object that represent CMS structure: ContentInfo.

See also
RFC 5652 section 3.

Member Enumeration Documentation

Enumeration of possible CMS Content Types.

See also
RFC 5652 section 3.

Member Function Documentation

virtual void virgil::crypto::foundation::cms::VirgilCMSContent::asn1Read ( virgil::crypto::foundation::asn1::VirgilAsn1Reader asn1Reader)
virtual

Read object state from the reader.

Parameters
asn1Readerreader payloaded with ASN.1 to be read.

Implements virgil::crypto::foundation::asn1::VirgilAsn1Compatible.

virtual size_t virgil::crypto::foundation::cms::VirgilCMSContent::asn1Write ( virgil::crypto::foundation::asn1::VirgilAsn1Writer asn1Writer,
size_t  childWrittenBytes = 0 
) const
virtual

Write object state to the writer.

Parameters
asn1Writerwriter that should be payloaded by subclasses.
childWrittenBytescount of bytes that was written by subclasses.
Returns
Writen bytes count.

Implements virgil::crypto::foundation::asn1::VirgilAsn1Compatible.


The documentation for this class was generated from the following file: