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