Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add RSA signature verification support #524

Closed
kchalkias opened this issue Mar 26, 2023 · 1 comment
Closed

Add RSA signature verification support #524

kchalkias opened this issue Mar 26, 2023 · 1 comment
Assignees

Comments

@kchalkias
Copy link
Collaborator

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 well
https://github.com/jedisct1/rust-jwt-simple/blob/master/Cargo.toml#L28

@jonas-lj
Copy link
Contributor

@kchalkias Do we need this for other usages than parsing and verifying jwt's? Because if not, we might just use the rust-jwt-simple crate directly.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants