Andrew Bennett

Results 28 comments of Andrew Bennett

PNG to PDF results in a rasterized version of the image that is not as suitable for printing. Writing straight to PDF results in a vectorized version of the image.

@ericmj I got [libdecaf 2.1.0](https://github.com/potatosalad/erlang-libdecaf/blob/main/CHANGELOG.md#210-2022-08-28) released yesterday which should fix the CI issues there, currently working on getting [libsodium](https://github.com/potatosalad/erlang-libsodium) functional again on modern OTP so that this project's CI can...

@tanguilp This has been [merged into `main`](https://github.com/potatosalad/erlang-jose/commit/bad9b45e73ef8b6c875de6e70063be0cfdba752d) and will be part of the next release.

> Is this beyond the scope of this library? Initially: yes, beyond the scope. Primarily because the [JWT RFC](https://tools.ietf.org/html/rfc7519) alone is overly vague on how these claims are intended to...

I'd recommend using it in the meantime, if nothing else but to prevent mistakes in re-implementing the same functionality in multiple places. The `window` feature in `iam_assert` may also be...

Yup, that's fine. The deprecation warnings for the stacktrace stuff should be harmless on OTP 22, though, they're being emitted internally from within OTP itself and are not warnings like...

Yes, there are a few functions provided for reading JSON Web Keys from files: * [`JOSE.JWK.from_file/1,2`](https://hexdocs.pm/jose/JOSE.JWK.html#from_file/1) * [`JOSE.JWK.from_oct_file/1,2`](https://hexdocs.pm/jose/JOSE.JWK.html#from_oct_file/1) * [`JOSE.JWK.from_openssh_key_file/1`](https://hexdocs.pm/jose/JOSE.JWK.html#from_openssh_key_file/1) * [`JOSE.JWK.from_pem_file/1,2`](https://hexdocs.pm/jose/JOSE.JWK.html#from_pem_file/1) Here is a list of examples of each...

@tanguilp Unfortunately, and I agree: confusingly, they are both [the names of curves](https://datatracker.ietf.org/doc/html/draft-ietf-lwig-curve-representations-23) and [the names of specific signing algorithms](https://www.rfc-editor.org/rfc/rfc8032#section-7). Specifically: unlike `"ECDSA"`, the term `"EdDSA"` alone does not tell...

@awoie If by "very quick" you mean "within 2 years", then yes 😄 The API in this library for ECDH-1PU is still [pretty bad](https://github.com/potatosalad/erlang-jose/issues/131), but here's a quick script that...