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
There are many dapps that might need to parse and verify an RSA signature from some web2 service.
As there are many modes, let's originally support RS256 as defined in the JWT standard, which is probably the most common version of RSA as it signs the sha256 of a message.
There are many dapps that might need to parse and verify an RSA signature from some web2 service.
As there are many modes, let's originally support RS256 as defined in the JWT standard, which is probably the most common version of RSA as it signs the sha256 of a message.
A good candidate is the
rsa
crate, it's also used by the rust-jwt-simple crate as wellhttps://github.com/jedisct1/rust-jwt-simple/blob/master/Cargo.toml#L28
The text was updated successfully, but these errors were encountered: