namespace ROLAC.API.Services.Security; /// Reversible protection for taxpayer identification numbers (SSN/EIN). public interface ITinProtector { string Protect(string plaintext); string Unprotect(string ciphertext); }