@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
59 lines (58 loc) • 1.55 kB
JavaScript
import * as $ from "@wildboar/asn1/functional";
/**
* @summary FingerPrint_hand
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* FingerPrint-hand ::= ENUMERATED { -- REMOVED_FROM_UNNESTING -- }
* ```
*
* @enum {number}
*/
export var _enum_for_FingerPrint_hand;
(function (_enum_for_FingerPrint_hand) {
_enum_for_FingerPrint_hand[_enum_for_FingerPrint_hand["left"] = 0] = "left";
_enum_for_FingerPrint_hand[_enum_for_FingerPrint_hand["right"] = 1] = "right";
})(_enum_for_FingerPrint_hand || (_enum_for_FingerPrint_hand = {}));
/**
* @summary FingerPrint_hand
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* FingerPrint-hand ::= ENUMERATED { -- REMOVED_FROM_UNNESTING -- }
* ```
*
* @enum {number}
*/
export const FingerPrint_hand = _enum_for_FingerPrint_hand;
/**
* @summary FingerPrint_hand_left
* @constant
* @type {number}
*/
export const FingerPrint_hand_left = FingerPrint_hand.left; /* LONG_NAMED_ENUMERATED_VALUE */
/**
* @summary left
* @constant
* @type {number}
*/
export const left = FingerPrint_hand.left; /* SHORT_NAMED_ENUMERATED_VALUE */
/**
* @summary FingerPrint_hand_right
* @constant
* @type {number}
*/
export const FingerPrint_hand_right = FingerPrint_hand.right; /* LONG_NAMED_ENUMERATED_VALUE */
/**
* @summary right
* @constant
* @type {number}
*/
export const right = FingerPrint_hand.right; /* SHORT_NAMED_ENUMERATED_VALUE */
export const _decode_FingerPrint_hand = $._decodeEnumerated;
export const _encode_FingerPrint_hand = $._encodeEnumerated;
/* eslint-enable */