bc-csharp
bc-csharp copied to clipboard
Optimize constructors for Time
Optimize constructors for Org.BouncyCastle.Asn1.X509.Time and Org.BouncyCastle.Asn1.Cms.Time.
In the original code, DateTime was format to string, from string was parsed year and ASN1 time structure.
I removed unnecessary steps from this code, and instead of parsing strings, DateTime is used directly.