@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
22 lines (21 loc) • 544 B
TypeScript
import { PKCS15_ALGORITHM } from "../PKCS-15/PKCS15-ALGORITHM.oca";
export { pkcs15_alg_null } from "../PKCS-15/pkcs15-alg-null.oa";
export { PKCS15_ALGORITHM } from "../PKCS-15/PKCS15-ALGORITHM.oca";
/**
* @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 declare const AlgorithmSet: PKCS15_ALGORITHM[];