summary refs log tree commit diff
path: root/crypto/src/ocsp/RevokedStatus.cs
diff options
context:
space:
mode:
authorroyb <roy.basmacier@primekey.com>2022-10-24 15:58:10 -0400
committerroyb <roy.basmacier@primekey.com>2022-10-24 15:58:10 -0400
commit7f5568591d17d3c256d42760fbf43c8544c6f2b8 (patch)
tree7d69619a03f10e108143b3454a9d6d3ca9272fcb /crypto/src/ocsp/RevokedStatus.cs
parentAdded Aes and Uniform variant to Saber (diff)
parentAdd Asn1GeneralizedTime and use (diff)
downloadBouncyCastle.NET-ed25519-7f5568591d17d3c256d42760fbf43c8544c6f2b8.tar.xz
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'crypto/src/ocsp/RevokedStatus.cs')
-rw-r--r--crypto/src/ocsp/RevokedStatus.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/ocsp/RevokedStatus.cs b/crypto/src/ocsp/RevokedStatus.cs
index edbeb57da..903e50ef5 100644
--- a/crypto/src/ocsp/RevokedStatus.cs
+++ b/crypto/src/ocsp/RevokedStatus.cs
@@ -24,7 +24,7 @@ namespace Org.BouncyCastle.Ocsp
 			DateTime	revocationDate,
 			int			reason)
 		{
-			this.info = new RevokedInfo(new DerGeneralizedTime(revocationDate), new CrlReason(reason));
+			this.info = new RevokedInfo(new Asn1GeneralizedTime(revocationDate), new CrlReason(reason));
 		}
 
 		public DateTime RevocationTime