| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- declare module "bn.js" {
- export class BN {
- constructor(value: string | number, radix?: number);
- add(other: BN): BN;
- sub(other: BN): BN;
- div(other: BN): BN;
- mod(other: BN): BN;
- mul(other: BN): BN;
- pow(other: BN): BN;
- maskn(other: number): BN;
- eq(other: BN): boolean;
- lt(other: BN): boolean;
- lte(other: BN): boolean;
- gt(other: BN): boolean;
- gte(other: BN): boolean;
- isZero(): boolean;
- toTwos(other: number): BN;
- fromTwos(other: number): BN;
- toString(radix: number): string;
- toNumber(): number;
- toArray(endian: string, width: number): Uint8Array;
- encode(encoding: string, compact: boolean): Uint8Array;
- }
- }
- declare module "elliptic" {
- import { BN } from "bn.js";
- export type BasicSignature = {
- r: Uint8Array;
- s: Uint8Array;
- };
- export type Signature = {
- r: BN,
- s: BN,
- recoveryParam: number
- }
- interface Point {
- add(point: Point): Point;
- encodeCompressed(enc: string): string
- }
- interface KeyPair {
- sign(message: Uint8Array, options: { canonical?: boolean }): Signature;
- getPublic(compressed: boolean, encoding?: string): string;
- getPublic(): BN;
- getPrivate(encoding?: string): string;
- encode(encoding: string, compressed: boolean): string;
- derive(publicKey: BN): BN;
- pub: Point;
- priv: BN;
- }
- export class ec {
- constructor(curveName: string);
- n: BN;
- keyFromPublic(publicKey: Uint8Array): KeyPair;
- keyFromPrivate(privateKey: Uint8Array): KeyPair;
- recoverPubKey(data: Uint8Array, signature: BasicSignature, recoveryParam: number): KeyPair;
- }
- }
|