diff options
author | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-11-05 20:17:54 +0700 |
---|---|---|
committer | Peter Dettman <peter.dettman@bouncycastle.org> | 2022-11-05 20:17:54 +0700 |
commit | d1b9e0282d9c11f98f983d42ec7f8ef367da0546 (patch) | |
tree | 07b086ed2cf38400f6b44205f299c91a8d0152f6 /crypto/src/asn1/x509 | |
parent | Cleanup RevokedStatus (diff) | |
parent | Optimize constructors for Org.BouncyCastle.Asn1.X509.Time and Org.BouncyCastl... (diff) | |
download | BouncyCastle.NET-ed25519-d1b9e0282d9c11f98f983d42ec7f8ef367da0546.tar.xz |
Merge branch 'Optimize-structures' of github.com:harrison314/bc-csharp
Diffstat (limited to 'crypto/src/asn1/x509')
-rw-r--r-- | crypto/src/asn1/x509/Time.cs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/crypto/src/asn1/x509/Time.cs b/crypto/src/asn1/x509/Time.cs index 1a6ac15c0..8260043aa 100644 --- a/crypto/src/asn1/x509/Time.cs +++ b/crypto/src/asn1/x509/Time.cs @@ -35,17 +35,15 @@ namespace Org.BouncyCastle.Asn1.X509 */ public Time(DateTime date) { - string d = date.ToUniversalTime().ToString("yyyyMMddHHmmss", CultureInfo.InvariantCulture) + "Z"; + DateTime d = date.ToUniversalTime(); - int year = int.Parse(d.Substring(0, 4)); - - if (year < 1950 || year > 2049) + if (d.Year < 1950 || d.Year > 2049) { time = new DerGeneralizedTime(d); } else { - time = new DerUtcTime(d.Substring(2)); + time = new DerUtcTime(d); } } |