UNPKG

tssrp6a

Version:

SRP6a client and server lib

10 lines (9 loc) 257 B
import { HashFunction } from "./parameters"; interface CompatibleCrypto { hashFunctions: { [key: string]: HashFunction; }; randomBytes: (array: Uint8Array) => Uint8Array; } export declare let crossEnvCrypto: CompatibleCrypto; export {};