UNPKG

@signumjs/crypto

Version:

Cryptographic functions for building Signum Network apps.

14 lines (13 loc) 246 B
/** * Original work Copyright (c) 2019 Burst Apps Team */ /** * The interface for encrypted raw data * @see {@link encryptData} * * @category en/decryption */ export interface EncryptedData { data: Uint8Array; nonce: Uint8Array; }