export interface ICryptoEncryptionService { decryptAsString(textToDecrypt: string, traceId: string, key?: string, salt?: string): string; encryptAsString(textToEncrypt: string, traceId: string, key?: string, salt?: string): string; }