UNPKG

@signumjs/crypto

Version:

Cryptographic functions for building Signum Network apps.

15 lines (14 loc) 264 B
/** * Original work Copyright (c) 2019 Burst Apps Team */ /** * The interface for encrypted message * @see {@link encryptMessage} * * @category en/decryption */ export interface EncryptedMessage { data: string; nonce: string; isText: boolean; }