@scaffoldly/serverless-util
Version:
Scaffoldly Serverless Helper Functionality
7 lines • 306 B
TypeScript
export declare type EncryptedValue = {
keyId: string;
value: string;
};
export declare const encryptValue: (value: string, keyId?: string | undefined) => Promise<EncryptedValue>;
export declare const decryptValue: (value: EncryptedValue) => Promise<string>;
//# sourceMappingURL=encryption.d.ts.map