Initial commit

This commit is contained in:
Adhiraj
2020-03-16 16:06:30 +05:30
commit 5bd524ca1f
319 changed files with 76526 additions and 0 deletions

29
node_modules/futoin-hkdf/hkdf.d.ts generated vendored Normal file
View File

@@ -0,0 +1,29 @@
declare function hkdf(
ikm: Buffer | string,
length: number,
option?: hkdf.Options
): Buffer;
declare namespace hkdf {
interface Options {
salt?: Buffer | string;
info?: Buffer | string;
hash?: string;
}
export function hash_length(hash: string): number;
export function extract(
hash: string,
hash_len: number,
ikm: Buffer | string,
salt: Buffer | string
): Buffer;
export function expand(
hash: string,
hash_len: number,
prk: Buffer | string,
length: number,
info: Buffer | string
): Buffer;
}
export = hkdf;