UNPKG

evm-blockchain-tools

Version:

This is a collection of resuseable tools to support development for EVM-powered blockchains

5 lines (4 loc) 257 B
/// <reference types="node" /> export declare function genSalt(length?: number): Buffer; export declare function encrypt(text: string, privateString: string): string; export declare function decrypt(encryptedMessage: string, privateString: string): string;