change default string crypter to AESStringCrypter

This commit is contained in:
2020-11-26 11:43:42 +01:00
parent 1f87f374ac
commit 2631a6afba

View File

@@ -50,7 +50,7 @@ namespace Pilz.Cryptography
if (Crypter == null)
{
if (DefaultCrypter == null)
DefaultCrypter = new SimpleStringCrypter(string.Empty);
DefaultCrypter = new AESStringCrypter();
Crypter = DefaultCrypter;
}
return Crypter;