UNPKG

js-srp6a

Version:

A modern SRP implementation for Node.js / Bun and web browsers

4 lines (3 loc) 190 B
import { SRPInt } from './SRPInt'; import type { HashAlgorithm } from './types'; export declare const hash: (hashAlgorithm: HashAlgorithm, ...input: (SRPInt | string)[]) => Promise<SRPInt>;