@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
24 lines (23 loc) • 765 B
TypeScript
import { EncryptedData } from "../PKCS7/EncryptedData.ta";
import { PKCS7_CONTENT_TYPE } from "../PKCS7/PKCS7-CONTENT-TYPE.oca";
export { EncryptedData, _decode_EncryptedData, _encode_EncryptedData, } from "../PKCS7/EncryptedData.ta";
export { id_encrypted_data } from "../PKCS7/id-encrypted-data.va";
export { PKCS7_CONTENT_TYPE } from "../PKCS7/PKCS7-CONTENT-TYPE.oca";
/**
* @summary encrypted_data
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* encrypted-data PKCS7-CONTENT-TYPE ::= {
* EncryptedData
* IDENTIFIED BY id-encrypted-data
* }
* ```
*
* @constant
* @type {PKCS7_CONTENT_TYPE<EncryptedData>}
* @implements {PKCS7_CONTENT_TYPE<EncryptedData>}
*/
export declare const encrypted_data: PKCS7_CONTENT_TYPE<EncryptedData>;