@types/pbkdf2
TypeScript definitions for pbkdf2
Last updated 6 years ago by types .
MIT · Repository · Original npm · Tarball · package.json
$ cnpm install @types/pbkdf2 
SYNC missed versions from official npm registry.

Installation

npm install --save @types/pbkdf2

Summary

This package contains type definitions for pbkdf2 (https://github.com/crypto-browserify/pbkdf2).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/pbkdf2.

index.d.ts

/// <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 {};

Additional Details

  • Last updated: Tue, 07 Nov 2023 09:09:39 GMT
  • Dependencies: @types/node

Credits

These definitions were written by Timon Engelke.

Current Tags

  • 3.1.2                                ...           latest (2 years ago)
  • 3.0.0                                ...           ts2.0 (8 years ago)
  • 3.0.0                                ...           ts2.1 (8 years ago)
  • 3.0.0                                ...           ts2.2 (8 years ago)
  • 3.0.0                                ...           ts2.3 (8 years ago)
  • 3.0.0                                ...           ts2.4 (8 years ago)
  • 3.0.0                                ...           ts2.5 (8 years ago)
  • 3.0.0                                ...           ts2.6 (8 years ago)
  • 3.0.0                                ...           ts2.7 (8 years ago)
  • 3.0.0                                ...           ts2.8 (8 years ago)
  • 3.0.0                                ...           ts2.9 (8 years ago)
  • 3.1.0                                ...           ts3.0 (6 years ago)
  • 3.1.0                                ...           ts3.1 (6 years ago)
  • 3.1.0                                ...           ts3.2 (6 years ago)
  • 3.1.0                                ...           ts3.3 (6 years ago)
  • 3.1.0                                ...           ts3.4 (6 years ago)
  • 3.1.0                                ...           ts3.5 (6 years ago)
  • 3.1.0                                ...           ts3.6 (6 years ago)
  • 3.1.0                                ...           ts3.7 (6 years ago)
  • 3.1.0                                ...           ts3.8 (6 years ago)
  • 3.1.0                                ...           ts3.9 (6 years ago)
  • 3.1.0                                ...           ts4.0 (6 years ago)
  • 3.1.0                                ...           ts4.1 (6 years ago)
  • 3.1.0                                ...           ts4.2 (6 years ago)
  • 3.1.0                                ...           ts4.3 (6 years ago)
  • 3.1.0                                ...           ts4.4 (6 years ago)
  • 3.1.2                                ...           ts4.5 (2 years ago)
  • 3.1.2                                ...           ts4.6 (2 years ago)
  • 3.1.2                                ...           ts4.7 (2 years ago)
  • 3.1.2                                ...           ts4.8 (2 years ago)
  • 3.1.2                                ...           ts4.9 (2 years ago)
  • 3.1.2                                ...           ts5.0 (2 years ago)
  • 3.1.2                                ...           ts5.1 (2 years ago)
  • 3.1.2                                ...           ts5.2 (2 years ago)
  • 3.1.2                                ...           ts5.3 (2 years ago)
  • 3.1.2                                ...           ts5.4 (2 years ago)
  • 3.1.2                                ...           ts5.5 (2 years ago)
  • 3.1.2                                ...           ts5.6 (2 years ago)
  • 3.1.2                                ...           ts5.7 (2 years ago)
  • 3.1.2                                ...           ts5.8 (2 years ago)
  • 3.1.2                                ...           ts5.9 (2 years ago)
  • 3.1.2                                ...           ts6.0 (2 years ago)

4 Versions

  • 3.1.2                                ...           2 years ago
  • 3.1.1                                ...           2 years ago
  • 3.1.0                                ...           6 years ago
  • 3.0.0                                ...           8 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 1
Last Day 0
Last Week 1
Last Month 0
Dependencies (1)
Dev Dependencies (0)
None
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |