Skip to content

Instantly share code, notes, and snippets.

View SebastienGllmt's full-sized avatar

Sebastien Guillemot SebastienGllmt

View GitHub Profile
@SebastienGllmt
SebastienGllmt / api.ts
Created October 14, 2021 16:28
RustSDK Api
/* tslint:disable */
/* eslint-disable */
/**
* @param {string} password
* @param {string} salt
* @param {string} nonce
* @param {string} data
* @returns {string}
*/
export function encrypt_with_password(password: string, salt: string, nonce: string, data: string): string;