@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
23 lines (22 loc) • 501 B
JavaScript
import { MACAlgorithms_Union0_Intersection0_Element } from "../PKCS-15/MACAlgorithms-Union0-Intersection0-Element.oa.mjs";
/**
* @summary MACAlgorithms
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* MACAlgorithms ALGORITHM-IDENTIFIER ::= {
* {NULL IDENTIFIED BY hMAC-SHA1},
* ... -- For future extensions
* }
* ```
*
* @constant
* @type {ALGORITHM_IDENTIFIER[]}
*
*/
export const MACAlgorithms = [
MACAlgorithms_Union0_Intersection0_Element,
];
/* eslint-enable */