UNPKG

@scirexs/srp6a

Version:

SRP-6a (Secure Remote Password) implementation in TypeScript for browser and server.

9 lines 599 B
/** * This module exports client side functions and types. * @module */ import "../_dnt.polyfills.js"; export { createEvidence, createLoginHello, createUserCredentials, extractLoginResult, extractServerHello, verifyServer } from "./main.js"; export { CryptoNumber, getDefaultConfig, GROUP_2048, GROUP_3072, GROUP_4096, GROUP_6144, GROUP_8192, SHA_256, SHA_384, SHA_512, SRPConfig, } from "../shared/mod.js"; export type { AuthResult, ClientHello, KeyPair, LoginEvidence, ServerHello, SignupCredentials, SRPHashConfig, SRPSecurityGroup, } from "../shared/mod.js"; //# sourceMappingURL=mod.d.ts.map