10 lines
270 B
C#
10 lines
270 B
C#
namespace xIds.Interfaces
|
|
{
|
|
public interface IXSecurityProvider
|
|
{
|
|
string Encrypt(string plainText);
|
|
string Decrypt(string cipherText);
|
|
string EncryptFromBytes(byte[] textBytes);
|
|
string DecryptFromBytes(byte[] cipherBytes);
|
|
}
|
|
} |