UNPKG

@wildboar/pkcs

Version:
21 lines (20 loc) 570 B
import { BAG_TYPE } from "../PKCS-12/BAG-TYPE.oca"; import { KeyBag } from "../PKCS-12/KeyBag.ta"; export { BAG_TYPE } from "../PKCS-12/BAG-TYPE.oca"; export { bagtypes } from "../PKCS-12/bagtypes.va"; export { KeyBag, _decode_KeyBag, _encode_KeyBag } from "../PKCS-12/KeyBag.ta"; /** * @summary keyBag * @description * * ### ASN.1 Definition: * * ```asn1 * keyBag BAG-TYPE ::= {KeyBag IDENTIFIED BY {bagtypes 1}} * ``` * * @constant * @type {BAG_TYPE<KeyBag>} * @implements {BAG_TYPE<KeyBag>} */ export declare const keyBag: BAG_TYPE<KeyBag>;