Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix TypeScript types #19

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 63 additions & 49 deletions scrypt.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,55 +23,69 @@ interface ScryptParamsKdf {
*/
export type ScryptParams = Required<ScryptParamsKdf>;

/**
* Produce derived key using scrypt as a key derivation function.
*
* @param passphrase Secret value such as a password from which key is to be derived.
* @param params Scrypt parameters.
* @returns Derived key (base-64 encoded).
*
* @example
* const key = await Scrypt.kdf('my secret password', { logN: 15 });
*/
export declare function kdf(passphrase: string|Uint8Array|Buffer, params: Readonly<ScryptParamsKdf>): Promise<Buffer>;
declare class Scrypt {
/**
* Produce derived key using scrypt as a key derivation function.
*
* @param passphrase Secret value such as a password from which key is to be derived.
* @param params Scrypt parameters.
* @returns Derived key (base-64 encoded).
*
* @example
* const key = await Scrypt.kdf('my secret password', { logN: 15 });
*/
static kdf(
passphrase: string | Uint8Array | Buffer,
params: Readonly<ScryptParamsKdf>
): Promise<Buffer>;

/**
* Check whether key was generated from passphrase.
*
* @param key Derived base64 key obtained from Scrypt.kdf().
* @param passphrase Passphrase originally used to generate key.
* @returns True if key was generated from passphrase.
*
* @example
* const ok = await Scrypt.verify(key, 'my secret password');
*/
export declare function verify(key: string|Uint8Array|Buffer, passphrase: string|Uint8Array|Buffer): Promise<boolean>;
/**
* Check whether key was generated from passphrase.
*
* @param key Derived base64 key obtained from Scrypt.kdf().
* @param passphrase Passphrase originally used to generate key.
* @returns True if key was generated from passphrase.
*
* @example
* const ok = await Scrypt.verify(key, 'my secret password');
*/
static verify(
key: string | Uint8Array | Buffer,
passphrase: string | Uint8Array | Buffer
): Promise<boolean>;

/**
* View scrypt parameters which were used to derive key.
*
* @param key Derived base64 key obtained from Scrypt.kdf().
* @returns Scrypt parameters logN, r, p.
*
* @example
* const key = await Scrypt.kdf('my secret password', { logN: 15 } );
* const params = Scrypt.viewParams(key); // => { logN: 15, r: 8, p: 1 }
*/
export declare function viewParams(key: string|Uint8Array|Buffer): ScryptParams;
/**
* View scrypt parameters which were used to derive key.
*
* @param key Derived base64 key obtained from Scrypt.kdf().
* @returns Scrypt parameters logN, r, p.
*
* @example
* const key = await Scrypt.kdf('my secret password', { logN: 15 } );
* const params = Scrypt.viewParams(key); // => { logN: 15, r: 8, p: 1 }
*/
static viewParams(key: string | Uint8Array | Buffer): ScryptParams;

/**
* Calculate scrypt parameters from maxtime, maxmem, maxmemfrac values.
*
* Adapted from Colin Percival's code: see github.com/Tarsnap/scrypt/tree/master/lib.
*
* Returned parameters may vary depending on computer specs & current loading.
*
* @param maxtime Maximum time in seconds scrypt will spend computing the derived key.
* @param maxmem Maximum bytes of RAM used when computing the derived encryption key.
* @param maxmemfrac Fraction of the available RAM used when computing the derived key.
* @returns Scrypt parameters logN, r, p.
*
* @example
* const params = Scrypt.pickParams(0.1); // => e.g. { logN: 15, r: 8, p: 1 }
*/
export declare function pickParams(maxtime: number, maxmem?: number, maxmemfrac?: number): ScryptParams;
/**
* Calculate scrypt parameters from maxtime, maxmem, maxmemfrac values.
*
* Adapted from Colin Percival's code: see github.com/Tarsnap/scrypt/tree/master/lib.
*
* Returned parameters may vary depending on computer specs & current loading.
*
* @param maxtime Maximum time in seconds scrypt will spend computing the derived key.
* @param maxmem Maximum bytes of RAM used when computing the derived encryption key.
* @param maxmemfrac Fraction of the available RAM used when computing the derived key.
* @returns Scrypt parameters logN, r, p.
*
* @example
* const params = Scrypt.pickParams(0.1); // => e.g. { logN: 15, r: 8, p: 1 }
*/
static pickParams(
maxtime: number,
maxmem?: number,
maxmemfrac?: number
): ScryptParams;
}

export default Scrypt;