@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
29 lines (28 loc) • 658 B
JavaScript
import * as $ from "@wildboar/asn1/functional";
/**
* @summary Version_v1
* @constant
* @type {number}
*/
export const Version_v1 = 0; /* LONG_NAMED_INTEGER_VALUE */
/**
* @summary Version_v1
* @constant
* @type {number}
*/
export const v1 = Version_v1; /* SHORT_NAMED_INTEGER_VALUE */
/**
* @summary Version_v2
* @constant
* @type {number}
*/
export const Version_v2 = 1; /* LONG_NAMED_INTEGER_VALUE */
/**
* @summary Version_v2
* @constant
* @type {number}
*/
export const v2 = Version_v2; /* SHORT_NAMED_INTEGER_VALUE */
export const _decode_Version = $._decodeInteger;
export const _encode_Version = $._encodeInteger;
/* eslint-enable */