feat: stub out secure config with dependencies

This commit is contained in:
Stevan Freeborn
2026-03-29 22:02:07 -05:00
parent a843976319
commit 43d64a1855
2 changed files with 45 additions and 0 deletions
@@ -0,0 +1,7 @@
namespace StevanFreeborn.Extensions.Configuration.Secure.Cryptography;
internal interface ICryptoProvider
{
string Encrypt(string plainText);
string Decrypt(string cipherText);
}