UNPKG

cognito-srp

Version:

Secure Remote Password protocol implementation compatible with Amazon Cognito.

11 lines (10 loc) 290 B
/// <reference types="node" /> import { BigInteger as _BigInteger } from 'jsbn'; declare module 'jsbn' { interface BigInteger { toBuffer(length?: number): Buffer; } } export declare class BigInteger extends _BigInteger { static fromBuffer(buffer: Buffer): BigInteger; }