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
The root cause of this appears to be in ASN1Primitive#fromByteArray(byte[] data) where the ASN1inputstream immediately returns -1 on read() and so the call to readObject() return null.
This is a bit unexpected as the null comes from deeper in the system. The input itself is not null. I don't have a good suggestion right now on the correct behavior. Perhaps it should throw an IOException?
The text was updated successfully, but these errors were encountered:
The root cause of this appears to be in
ASN1Primitive#fromByteArray(byte[] data)
where theASN1inputstream
immediately returns -1 onread()
and so the call toreadObject()
return null.This is a bit unexpected as the null comes from deeper in the system. The input itself is not null. I don't have a good suggestion right now on the correct behavior. Perhaps it should throw an IOException?
The text was updated successfully, but these errors were encountered: