diff options
Diffstat (limited to 'crypto/src/asn1/cmp/PKIMessage.cs')
-rw-r--r-- | crypto/src/asn1/cmp/PKIMessage.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/asn1/cmp/PKIMessage.cs b/crypto/src/asn1/cmp/PKIMessage.cs index 7008a9e1c..a408fead5 100644 --- a/crypto/src/asn1/cmp/PKIMessage.cs +++ b/crypto/src/asn1/cmp/PKIMessage.cs @@ -52,7 +52,7 @@ namespace Org.BouncyCastle.Asn1.Cmp m_header = header ?? throw new ArgumentNullException(nameof(header)); m_body = body ?? throw new ArgumentNullException(nameof(body)); m_protection = protection; - m_extraCerts = extraCerts == null ? null : DerSequence.FromElements(extraCerts); + m_extraCerts = DerSequence.FromElementsOptional(extraCerts); } public PkiMessage(PkiHeader header, PkiBody body, DerBitString protection) |