diff options
author | royb <roy.basmacier@primekey.com> | 2022-10-24 15:58:10 -0400 |
---|---|---|
committer | royb <roy.basmacier@primekey.com> | 2022-10-24 15:58:10 -0400 |
commit | 7f5568591d17d3c256d42760fbf43c8544c6f2b8 (patch) | |
tree | 7d69619a03f10e108143b3454a9d6d3ca9272fcb /crypto/src/asn1/x509/TBSCertList.cs | |
parent | Added Aes and Uniform variant to Saber (diff) | |
parent | Add Asn1GeneralizedTime and use (diff) | |
download | BouncyCastle.NET-ed25519-7f5568591d17d3c256d42760fbf43c8544c6f2b8.tar.xz |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'crypto/src/asn1/x509/TBSCertList.cs')
-rw-r--r-- | crypto/src/asn1/x509/TBSCertList.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/asn1/x509/TBSCertList.cs b/crypto/src/asn1/x509/TBSCertList.cs index ab847d563..865cfdd3d 100644 --- a/crypto/src/asn1/x509/TBSCertList.cs +++ b/crypto/src/asn1/x509/TBSCertList.cs @@ -194,7 +194,7 @@ namespace Org.BouncyCastle.Asn1.X509 if (seqPos < seq.Count && (seq[seqPos] is DerUtcTime - || seq[seqPos] is DerGeneralizedTime + || seq[seqPos] is Asn1GeneralizedTime || seq[seqPos] is Time)) { nextUpdate = Time.GetInstance(seq[seqPos++]); |