Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
share
/
nodejs
/
@types
/
pbkdf2
📤 Upload
📝 New File
📁 New Folder
Close
Editing: index.d.ts
// Type definitions for pbkdf2 3.1 // Project: https://github.com/crypto-browserify/pbkdf2 // Definitions by: Timon Engelke <https://github.com/timonegk> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// <reference types="node" /> // No need to export this type TypedArray = | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array; export function pbkdf2( password: string | Buffer | TypedArray | DataView, salt: string | Buffer | TypedArray | DataView, iterations: number, keylen: number, callback: (err: Error, derivedKey: Buffer) => void, ): void; export function pbkdf2( password: string | Buffer | TypedArray | DataView, salt: string | Buffer | TypedArray | DataView, iterations: number, keylen: number, digest: string, callback: (err: Error, derivedKey: Buffer) => void, ): void; export function pbkdf2Sync( password: string | Buffer | TypedArray | DataView, salt: string | Buffer | TypedArray | DataView, iterations: number, keylen: number, digest?: string, ): Buffer; export {};
Save
Cancel