namespace HrynCo.Common.Security; public interface ISecretProtector { string Protect(string plaintext); string Unprotect(string protectedValue); }