@apeleghq/cms-classes
Version:
A collection of utility classes to encode ASN.1 data following DER rules
10 lines • 807 B
TypeScript
import AlgorithmIdentifier from './AlgorithmIdentifier.js';
declare class KeyDerivationAlgorithmIdentifier extends AlgorithmIdentifier {
/** @deprecated */
static get pbkdf2sha1(): (salt: AllowSharedBufferSource, iterationCount: number) => Readonly<KeyDerivationAlgorithmIdentifier>;
static get pbkdf2sha256(): (salt: AllowSharedBufferSource, iterationCount: number) => Readonly<KeyDerivationAlgorithmIdentifier>;
static get pbkdf2sha384(): (salt: AllowSharedBufferSource, iterationCount: number) => Readonly<KeyDerivationAlgorithmIdentifier>;
static get pbkdf2sha512(): (salt: AllowSharedBufferSource, iterationCount: number) => Readonly<KeyDerivationAlgorithmIdentifier>;
}
export default KeyDerivationAlgorithmIdentifier;
//# sourceMappingURL=KeyDerivationAlgorithmIdentifier.d.ts.map