namespace Pilz.Cryptography; public interface ICrypter { string Encrypt(string plainValue); string Decrypt(string encryptedValue); }