summary refs log tree commit diff
path: root/crypto/src/asn1/x509/V1TBSCertificateGenerator.cs
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-10-25 23:32:48 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-10-25 23:32:48 +0700
commit5cfc4eae7e78d0299f5ebf47b45109805221a2d6 (patch)
tree91ae5b56a4ab011b38433066fba923e4a53ec3ae /crypto/src/asn1/x509/V1TBSCertificateGenerator.cs
parentRefactor Pqc test configs (diff)
downloadBouncyCastle.NET-ed25519-5cfc4eae7e78d0299f5ebf47b45109805221a2d6.tar.xz
Add Asn1UtcTime and use
Diffstat (limited to 'crypto/src/asn1/x509/V1TBSCertificateGenerator.cs')
-rw-r--r--crypto/src/asn1/x509/V1TBSCertificateGenerator.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/src/asn1/x509/V1TBSCertificateGenerator.cs b/crypto/src/asn1/x509/V1TBSCertificateGenerator.cs
index 20b525a48..9cbff1ef0 100644
--- a/crypto/src/asn1/x509/V1TBSCertificateGenerator.cs
+++ b/crypto/src/asn1/x509/V1TBSCertificateGenerator.cs
@@ -56,7 +56,7 @@ namespace Org.BouncyCastle.Asn1.X509
         }
 
 		public void SetStartDate(
-            DerUtcTime startDate)
+            Asn1UtcTime startDate)
         {
             this.startDate = new Time(startDate);
         }
@@ -68,7 +68,7 @@ namespace Org.BouncyCastle.Asn1.X509
         }
 
 		public void SetEndDate(
-            DerUtcTime endDate)
+            Asn1UtcTime endDate)
         {
             this.endDate = new Time(endDate);
         }