UNPKG

@fruitsjs/crypto

Version:

Cryptographic functions for building Fruits Eco-Blockchain apps.

11 lines (10 loc) 198 B
/** * The interface for encrypted message * @see [[encryptMessage]] * @module crypto */ export interface EncryptedMessage { data: string; nonce: string; isText: boolean; }