Files
xSaherElmIds/Interfaces/IXSecurityProvider.cs
2026-03-22 14:08:25 +03:30

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);
}
}