Files
ROLAC/API/ROLAC.API/Services/Security/ITinProtector.cs
T
2026-06-25 16:47:49 -07:00

9 lines
246 B
C#

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