Jianan Ou
Jianan Ou
@Keats Thanks, let me clean up my code and create a PR first. Right now I only cover the `dir` for CEK and I'm working on adding `rsa` algorithm.
@Keats, am I allowed to add more dependencies? I'm merging my jwe validate code to a fork of `jsonwebtoken-aws-lc` and noticed that it doesn't have the `regex` crate which I...
@Keats I'm using that crate to create a helper function that converts pem format to der format. Just a general question, the company I'm working for is trying to make...
@rimutaka I don't see any `wasm32` related configurations in the `jsonwebtoken-aws-lc` code base. Do I need to set the `wasm32` target and configure it?
@Keats I have a question about the error messages in `errors.rs`. Many errors don't have any detailed messages, such as `InvalidKeyFormat` error. Looking into your examples in the main function,...
@Keats For example, when checking the jwk, I have the custom error messages for each different parameter, something like this: ``` Err(new_error(ErrorKind::CustomError(format!( "The JWK {} parameter is required.", key ))))?...
That's a good point, it would be better to add a more specific enum rather than this `customError` one