dsql-admin/dsql-app/package-shared/functions/backend/encrypt.d.ts

10 lines
263 B
TypeScript
Raw Normal View History

2024-11-11 08:34:43 +00:00
export = encrypt;
/**
* @async
* @param {string} data
* @param {string} [encryptionKey]
* @param {string} [encryptionSalt]
* @returns {string | null}
*/
declare function encrypt(data: string, encryptionKey?: string, encryptionSalt?: string): string | null;