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
It looks like there is currently no handling of OID 1.3.14.3.2.29 (sha1RSA) , causing the following error to be thrown when computing a digest: "Could not compute certificate digest. Unknown signature OID."
I suspect the same code that handles 1.2.840.113549.1.1.5 would work here, and I'm happy to try to put together a PR for this, but any guidance would be appreciated!
The text was updated successfully, but these errors were encountered:
Looking at this issue in python's cryptography library seems to indicate we can treat this the same as 1.2.840.113549.1.1.5 (sha1WithRSAEncryption).
Because the id -> name and name -> id mappings are 1:1, we'd either have to change the structure of the maps or introduce a new name. I'm leaning toward the latter to limit the scope of the change.
It looks like there is currently no handling of OID 1.3.14.3.2.29 (sha1RSA) , causing the following error to be thrown when computing a digest: "Could not compute certificate digest. Unknown signature OID."
I suspect the same code that handles 1.2.840.113549.1.1.5 would work here, and I'm happy to try to put together a PR for this, but any guidance would be appreciated!
The text was updated successfully, but these errors were encountered: