@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
21 lines (20 loc) • 583 B
TypeScript
import { BAG_TYPE } from "../PKCS-12/BAG-TYPE.oca";
import { CertBag } from "../PKCS-12/CertBag.ta";
export { BAG_TYPE } from "../PKCS-12/BAG-TYPE.oca";
export { bagtypes } from "../PKCS-12/bagtypes.va";
export { CertBag, _decode_CertBag, _encode_CertBag, } from "../PKCS-12/CertBag.ta";
/**
* @summary certBag
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* certBag BAG-TYPE ::= {CertBag IDENTIFIED BY {bagtypes 3}}
* ```
*
* @constant
* @type {BAG_TYPE<CertBag>}
* @implements {BAG_TYPE<CertBag>}
*/
export declare const certBag: BAG_TYPE<CertBag>;