add Pilz.Cryptography

This commit is contained in:
schedpas
2020-07-14 09:35:33 +02:00
parent bf77505f42
commit e31827642e
19 changed files with 392 additions and 439 deletions

View File

@@ -0,0 +1,14 @@
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);
}
}