UNPKG

@safient/core

Version:

JavaScript SDK to manage safes and interact with Safient protocol.

5 lines (4 loc) 279 B
/// <reference types="node" /> export declare const _generateCipherKey: () => Promise<unknown> | null; export declare const _aesEncryption: (data: Object, cipherKey: Object) => Promise<Buffer>; export declare const _aesDecryption: (data: any, cipherKey: any) => Promise<Object>;