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