refactor(CryptFactory.Password): umbenennen in PbePassword

This commit is contained in:
Developer 02 2024-11-19 17:14:54 +01:00
parent 7048f385ef
commit a39728dff5

View File

@ -11,7 +11,7 @@ namespace DigitalData.Core.Security
public int KeySizeInBits { get; init; } = 2048;
public string Password { get; init; }
public string PbePassword { get; init; }
public PbeEncryptionAlgorithm PbeEncryptionAlgorithm { get; init; } = PbeEncryptionAlgorithm.Aes256Cbc;