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/util/Asn1Dump.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/util/Asn1Dump.cs')
-rw-r--r-- | crypto/src/asn1/util/Asn1Dump.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/asn1/util/Asn1Dump.cs b/crypto/src/asn1/util/Asn1Dump.cs index 7bae766c3..73586cf9b 100644 --- a/crypto/src/asn1/util/Asn1Dump.cs +++ b/crypto/src/asn1/util/Asn1Dump.cs @@ -211,7 +211,7 @@ namespace Org.BouncyCastle.Asn1.Utilities buf.Append(indent); buf.AppendLine("UTCTime(" + utcTime.TimeString + ")"); } - else if (obj is DerGeneralizedTime generalizedTime) + else if (obj is Asn1GeneralizedTime generalizedTime) { buf.Append(indent); buf.AppendLine("GeneralizedTime(" + generalizedTime.GetTime() + ")"); |