8 lines
145 B
C#
8 lines
145 B
C#
namespace Pilz.Cryptography;
|
|
|
|
public interface ICrypter
|
|
{
|
|
string Encrypt(string plainValue);
|
|
string Decrypt(string encryptedValue);
|
|
}
|