5e2fbe800c
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
9 lines
246 B
C#
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);
|
|
}
|