You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apple has ASN.1 times encoded in this format 20171017112741.65904593Z. If we read it with BC it will throw an exception, because the highest handled precision handled Asn1GeneralizedTime.cs is
case 23: return ParseUtc(s, @"yyyyMMddHHmmss.fffffff\Z");
Solution would be to increase to 24 + 25 with two extra floats.
It's currently a show stopper for my company. Any advice on how to counter it ? (we cannot modify the source data obviously)
The text was updated successfully, but these errors were encountered:
RobLinux
changed the title
ASN.1 Time validation exception because not too much precision
PR: ASN.1 Time validation exception because not too much precision
Dec 27, 2022
Apple has ASN.1 times encoded in this format
20171017112741.65904593Z
. If we read it with BC it will throw an exception, because the highest handled precision handled Asn1GeneralizedTime.cs iscase 23: return ParseUtc(s, @"yyyyMMddHHmmss.fffffff\Z");
Solution would be to increase to 24 + 25 with two extra floats.
It's currently a show stopper for my company. Any advice on how to counter it ? (we cannot modify the source data obviously)
The text was updated successfully, but these errors were encountered: