UNPKG

@scirexs/srp6a

Version:

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

7 lines (6 loc) 390 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";