@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
18 lines • 512 B
text/typescript
import { NULL } from "@wildboar/asn1";
import { type PKCS15_ALGORITHM } from "../PKCS-15/PKCS15-ALGORITHM.oca.mjs";
/**
* @summary pkcs15_alg_null
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* pkcs15-alg-null PKCS15-ALGORITHM ::= { PARAMETERS NULL OPERATIONS {{generate-key}} ID -1}
* ```
*
* @constant
* @type {PKCS15_ALGORITHM<NULL>}
* @implements {PKCS15_ALGORITHM<NULL>}
*/
export declare const pkcs15_alg_null: PKCS15_ALGORITHM<NULL>;
//# sourceMappingURL=pkcs15-alg-null.oa.d.mts.map