namespace AIStudio.Tools; public static class EncryptedTextExtensions { public static async Task Encrypt(this string data, Encryption encryption) => await encryption.Encrypt(data); public static async Task Decrypt(this EncryptedText encryptedText, Encryption encryption) => await encryption.Decrypt(encryptedText); }