@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
28 lines • 679 B
text/typescript
import { INTEGER } from "@wildboar/asn1";
import * as $ from "@wildboar/asn1/functional";
/**
* @summary PFX_version
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* PFX-version ::= INTEGER { -- REMOVED_FROM_UNNESTING -- }
* ```
*/
export type PFX_version = INTEGER;
/**
* @summary PFX_version_v3
* @constant
* @type {number}
*/
export declare const PFX_version_v3: PFX_version;
/**
* @summary PFX_version_v3
* @constant
* @type {number}
*/
export declare const v3: PFX_version;
export declare const _decode_PFX_version: $.ASN1Decoder<INTEGER>;
export declare const _encode_PFX_version: $.ASN1Encoder<INTEGER>;
//# sourceMappingURL=PFX-version.ta.d.mts.map