@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
32 lines (31 loc) • 822 B
TypeScript
import { BAG_TYPE } from "../PKCS-12/BAG-TYPE.oca";
export { BAG_TYPE } from "../PKCS-12/BAG-TYPE.oca";
export { certBag } from "../PKCS-12/certBag.oa";
export { crlBag } from "../PKCS-12/crlBag.oa";
export { keyBag } from "../PKCS-12/keyBag.oa";
export { pkcs8ShroudedKeyBag } from "../PKCS-12/pkcs8ShroudedKeyBag.oa";
export { safeContentsBag } from "../PKCS-12/safeContentsBag.oa";
export { secretBag } from "../PKCS-12/secretBag.oa";
/**
* @summary PKCS12BagSet
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* PKCS12BagSet BAG-TYPE ::= {
* keyBag |
* pkcs8ShroudedKeyBag |
* certBag |
* crlBag |
* secretBag |
* safeContentsBag,
* ... -- For future extensions
* }
* ```
*
* @constant
* @type {BAG_TYPE[]}
*
*/
export declare const PKCS12BagSet: BAG_TYPE<any>[];