UNPKG

@fruitsjs/crypto

Version:

Cryptographic functions for building Fruits Eco-Blockchain apps.

10 lines (9 loc) 179 B
/** * The interface for encrypted raw data * @see [[encryptData]] * @module crypto */ export interface EncryptedData { data: Uint8Array; nonce: Uint8Array; }