UNPKG

ecdsa-node-ts

Version:

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

9 lines (8 loc) 224 B
import { BigInteger } from "big-integer"; export declare class Point { x: BigInteger; y: BigInteger; z: BigInteger; constructor(x?: BigInteger, y?: BigInteger, z?: BigInteger); isAtInfinity(): boolean; }