//#region src/helpers/vault/client-side.d.ts /** * Use to hash the key so the server cannot infer it. */ declare function hashKey(secret: string, key: string): Promise; /** * Use to encrypt the value so that the server cannot read the value without knowing the key. */ declare function encryptValue(secret: string, key: string, value: string): Promise; /** * Use to decrypt the value. See encryptValue. */ declare function decryptValue(secret: string, key: string, encryptedValue: string): Promise; //#endregion export { decryptValue, encryptValue, hashKey }; //# sourceMappingURL=client-side.d.ts.map