UNPKG

321 BTypeScriptView Raw
1/// <reference types="node" />
2import { IDecryptResult } from "../interfaces";
3export declare const verify: (bip38: string) => boolean;
4export declare const encrypt: (privateKey: Buffer, compressed: boolean, passphrase: string) => string;
5export declare const decrypt: (bip38: string, passphrase: any) => IDecryptResult;