@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
22 lines (21 loc) • 445 B
JavaScript
/* eslint-disable */
import { pkcs15_alg_null } from "../PKCS-15/pkcs15-alg-null.oa.mjs";
/**
* @summary AlgorithmSet
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* AlgorithmSet PKCS15-ALGORITHM ::= {
* pkcs15-alg-null,
* ... -- See PKCS #11 for values for the &id field (and parameters)
* }
* ```
*
* @constant
* @type {PKCS15_ALGORITHM[]}
*
*/
export const AlgorithmSet = [pkcs15_alg_null];
/* eslint-enable */