UNPKG

ecdsa-node-ts

Version:

TypeScript implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA)

4 lines (3 loc) 203 B
import { BigInteger } from "big-integer"; export declare function modulo(x: BigInteger, n: BigInteger): BigInteger; export declare function between(minimum: BigInteger, maximum: BigInteger): BigInteger;