7 lines
183 B
C#
7 lines
183 B
C#
namespace StevanFreeborn.Extensions.Configuration.Secure.Cryptography;
|
|
|
|
internal interface ICryptoProvider
|
|
{
|
|
string Encrypt(string plainText);
|
|
string Decrypt(string cipherText);
|
|
} |