Files

10 lines
264 B
C#

namespace xCommons.Interfaces
{
public interface IXCipher
{
string Encrypt(string plainText);
string Decrypt(string cipherText);
string EncryptFromBytes(byte[] textBytes);
string DecryptFromBytes(byte[] cipherBytes);
}
}