feat(1099): add ITinProtector with Data Protection encryption + last-4 helper
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user