diff --git a/DigitalData.Core.Security/Cryptographer/RSADecryptor.cs b/DigitalData.Core.Security/Cryptographer/RSADecryptor.cs index 0eede5d..98190a6 100644 --- a/DigitalData.Core.Security/Cryptographer/RSADecryptor.cs +++ b/DigitalData.Core.Security/Cryptographer/RSADecryptor.cs @@ -10,7 +10,9 @@ namespace DigitalData.Core.Security.Cryptographer public override string Pem { - get => _pem ?? throw PemIsNullException; +#pragma warning disable CS8603 // Possible null reference return. + get => _pem; +#pragma warning restore CS8603 // Possible null reference return. init { _pem = value;