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
In several places we catch specific OpenSSL errors, all of them instantiated as cryptography.exceptions.InternalError. However, we are only interested in particular cases, which can be filtered by the reason attribute:
Point at infinity (code 106)
Point not in the curve (code 107)
Invalid compressed point (code 110)
It would be good to create a custom error-handling mechanism to manage this better.
The text was updated successfully, but these errors were encountered:
In several places we catch specific OpenSSL errors, all of them instantiated as
cryptography.exceptions.InternalError
. However, we are only interested in particular cases, which can be filtered by thereason
attribute:It would be good to create a custom error-handling mechanism to manage this better.
The text was updated successfully, but these errors were encountered: