cognito-srp
Version:
Secure Remote Password protocol implementation compatible with Amazon Cognito.
10 lines (9 loc) • 353 B
TypeScript
import { BigInteger } from 'jsbn';
import { HASH_TYPE } from './util';
export declare const N: BigInteger;
export declare const Nbits: number;
export declare const Nbytes: number;
export declare const g: BigInteger;
export declare const infoBits = "Caldera Derived Key\u0001";
export declare const multiplierParameter: BigInteger;
export { HASH_TYPE };