@wildboar/pkcs
Version:
Public Key Cryptography Standard PDUs in TypeScript
26 lines (25 loc) • 712 B
TypeScript
import { ALGORITHM_IDENTIFIER } from "../PKCS5v2-1/ALGORITHM-IDENTIFIER.oca";
/**
* @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>[];