UNPKG

@wildboar/pkcs

Version:
23 lines (22 loc) 445 B
import { PBKDF2Algorithms } from "../PKCS5v2-1/PBKDF2Algorithms.osa.mjs"; /** * @summary KeyDerivationAlgorithms * @description * * ### ASN.1 Definition: * * ```asn1 * KeyDerivationAlgorithms ALGORITHM-IDENTIFIER ::= { * PBKDF2Algorithms, * ... -- For future extensions * } * ``` * * @constant * @type {ALGORITHM_IDENTIFIER[]} * */ export const KeyDerivationAlgorithms = [ ...PBKDF2Algorithms, ]; /* eslint-enable */