Files
stevanfreeborn.secureconfig/src/StevanFreeborn.Extensions.Configuration.Secure/Cryptography/ICryptoProvider.cs
T

7 lines
183 B
C#
Raw Normal View History

namespace StevanFreeborn.Extensions.Configuration.Secure.Cryptography;
internal interface ICryptoProvider
{
string Encrypt(string plainText);
string Decrypt(string cipherText);
}