-
Notifications
You must be signed in to change notification settings - Fork 51
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
Support JWE generation and validation #617
Comments
Hello! I am curious about JWS, JWE, etc. (i.e., the JOSE framework). While support for JOSE's high-level operations may be out of scope for our library, I see value in ensuring that our library provides whatever cryptographic operations are required for its implementation. You mentioned that |
Hi Justin, thank you for the response. I'm using the Supported encryption algorithms
I'm implementing the AES-GCM right now and looking into the |
Problem:
Currently the
aws-lc-rs
only supports JWS generation and validation, not JWE. While theopenssl
supports both, it would be nice to have that implementation for theaws-lc
as well.Solution:
I found that the aes-gcm algorithm is already exposed in
aws-lc-rs
source code, so I'm working on implementing the JWE encrypt/decrypt function based on that.Requirements / Acceptance Criteria:
What must a solution address in order to solve the problem? How do we know the solution is complete?
interesting/important unit tests.
Out of scope:
Is there anything the solution will intentionally NOT address?
The text was updated successfully, but these errors were encountered: