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