websitepanel/WebsitePanel/Sources/WebsitePanel.WebDavPortal/Cryptography/ICryptography.cs
2014-12-03 11:43:26 +03:00

8 lines
No EOL
197 B
C#

namespace WebsitePanel.WebDavPortal.Cryptography
{
public interface ICryptography
{
string Encrypt(string plainText);
string Decrypt(string encryptedText);
}
}