Expose isEncrypted and decrypt functions in cryptoUtils for export controller

This commit is contained in:
Jakub Trávník 2025-12-22 17:18:43 +01:00
parent 1421085660
commit 535e5c7e7d

View file

@ -186,4 +186,6 @@ const sealSecret = async (value: string): Promise<string> => {
export const cryptoUtils = {
resolveSecret,
sealSecret,
isEncrypted,
decrypt,
};