8 lines
No EOL
205 B
C#
8 lines
No EOL
205 B
C#
namespace WebsitePanel.WebDav.Core.Security.Cryptography
|
|
{
|
|
public interface ICryptography
|
|
{
|
|
string Encrypt(string plainText);
|
|
string Decrypt(string encryptedText);
|
|
}
|
|
} |