EncryptedData ::= SEQUENCE{ version Version, encryptedContentInfo EncryptedContentInfo } version is the syntax version number, which shall be 0 for this version. @author Michele Boivin @version "$Id: EncryptedData.java,v 1.4 2005/03/22 13:46:25 flautens Exp $"
EncryptedData
element is the core element in the syntax. Not only does its CipherData
child contain the encrypted data, but it's also the element that replaces the encrypted element, or serves as the new document root. It's schema definition is as follows:
EncryptedData ::= SEQUENCE { etype [0] Int32 -- EncryptionType --, kvno [1] UInt32 OPTIONAL, cipher [2] OCTET STRING -- ciphertext }@author Apache Directory Project
xenc:EncryptedData
element.
@author $Author: vdkoogh $
EncryptedData ::= SEQUENCE { version Version, encryptedContentInfo EncryptedContentInfo } EncryptedContentInfo ::= SEQUENCE { contentType ContentType, contentEncryptionAlgorithm ContentEncryptionAlgorithmIdentifier, encryptedContent [0] IMPLICIT EncryptedContent OPTIONAL } EncryptedContent ::= OCTET STRING
EncryptedData ::= SEQUENCE { version Version, encryptedContentInfo EncryptedContentInfo } EncryptedContentInfo ::= SEQUENCE { contentType ContentType, contentEncryptionAlgorithm ContentEncryptionAlgorithmIdentifier, encryptedContent [0] IMPLICIT EncryptedContent OPTIONAL } EncryptedContent ::= OCTET STRING
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|