This commit is contained in:
schedpas
2020-07-16 08:22:33 +02:00

View File

@@ -22,7 +22,7 @@ namespace Pilz.Cryptography
public string Value
{
get => GetCrypter().Decrypt(EncryptedValue);
set => EncryptedValue = GetCrypter().Encrypt(Value);
set => EncryptedValue = GetCrypter().Encrypt(value);
}
public SecureString() :