diff options
Diffstat (limited to 'crypto/src/asn1/esf/OtherSigningCertificate.cs')
-rw-r--r-- | crypto/src/asn1/esf/OtherSigningCertificate.cs | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/crypto/src/asn1/esf/OtherSigningCertificate.cs b/crypto/src/asn1/esf/OtherSigningCertificate.cs index 78fda76d1..f9333eb6c 100644 --- a/crypto/src/asn1/esf/OtherSigningCertificate.cs +++ b/crypto/src/asn1/esf/OtherSigningCertificate.cs @@ -54,15 +54,8 @@ namespace Org.BouncyCastle.Asn1.Esf public OtherSigningCertificate(OtherCertID[] certs, params PolicyInformation[] policies) { - if (certs == null) - throw new ArgumentNullException(nameof(certs)); - m_certs = DerSequence.FromElements(certs); - - if (policies != null) - { - m_policies = DerSequence.FromElements(policies); - } + m_policies = DerSequence.FromElementsOptional(policies); } public OtherSigningCertificate(IEnumerable<OtherCertID> certs) |