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