UNPKG

@scirexs/srp6a

Version:

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

8 lines 572 B
/** * This module exports shared constants, functions and types. * @module */ export { GROUP_2048, GROUP_2048_FOR_SERVER, GROUP_3072, GROUP_3072_FOR_SERVER, GROUP_4096, GROUP_4096_FOR_SERVER, GROUP_6144, GROUP_6144_FOR_SERVER, GROUP_8192, GROUP_8192_FOR_SERVER, SHA_256, SHA_384, SHA_512, } from "./constants.js"; export { CryptoNumber, getDefaultConfig, SRPConfig } from "./crypto.js"; export type { AuthResult, ClientHello, KeyPair, LoginEvidence, ServerHello, SignupCredentials, SRPHashConfig, SRPSecurityGroup, } from "./types.js"; //# sourceMappingURL=mod.d.ts.map