@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
26 lines • 767 B
text/typescript
import { type ALGORITHM_IDENTIFIER } from "../PKCS5v2-1/ALGORITHM-IDENTIFIER.oca.mjs";
/**
* @summary PBKDF2_PRFs
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* PBKDF2-PRFs ALGORITHM-IDENTIFIER ::= {
* {NULL IDENTIFIED BY id-hmacWithSHA1} |
* {NULL IDENTIFIED BY id-hmacWithSHA224} |
* {NULL IDENTIFIED BY id-hmacWithSHA256} |
* {NULL IDENTIFIED BY id-hmacWithSHA384} |
* {NULL IDENTIFIED BY id-hmacWithSHA512} |
* {NULL IDENTIFIED BY id-hmacWithSHA512-224} |
* {NULL IDENTIFIED BY id-hmacWithSHA512-256},
* ...
* }
* ```
*
* @constant
* @type {ALGORITHM_IDENTIFIER[]}
*
*/
export declare const PBKDF2_PRFs: ALGORITHM_IDENTIFIER<any>[];
//# sourceMappingURL=PBKDF2-PRFs.osa.d.mts.map