websitepanel/WebsitePanel/Sources/WebsitePanel.WebDav.Core/Security/Cryptography/ICryptography.cs
2015-01-13 04:18:56 -08:00

8 lines
No EOL
205 B
C#

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