Files
Pilz/Pilz.Cryptography/ICrypter.cs
2020-07-14 09:35:33 +02:00

15 lines
284 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pilz.Cryptography
{
public interface ICrypter
{
string Encrypt(string plainValue);
string Decrypt(string encryptedValue);
}
}