UNPKG

@wildboar/pkcs

Version:
20 lines (19 loc) 923 B
import { NULL } from "asn1-ts"; import { PKCS15_ALGORITHM } from "../PKCS-15/PKCS15-ALGORITHM.oca"; export { compute_checksum, compute_signature, decipher, encipher, generate_key, hash, Operations, Operations_compute_checksum, Operations_compute_signature, Operations_decipher, Operations_encipher, Operations_generate_key, Operations_hash, Operations_verify_checksum, Operations_verify_signature, verify_checksum, verify_signature, _decode_Operations, _encode_Operations, } from "../PKCS-15/Operations.ta"; export { PKCS15_ALGORITHM } from "../PKCS-15/PKCS15-ALGORITHM.oca"; /** * @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>;