Erik

Results 9 issues of Erik

Resolves #68

I want to implement [back-channel logout](https://openid.net/specs/openid-connect-backchannel-1_0.html). For this, the OP sends an so called Logout token to the RP. The RP needs to validate this token. Since it is not...

I've found an audit of the `XSalsa20Poly1305` crate by [Cure53](https://cure53.de) funded by Threema. It seems like they didn't find anything particular problematic in the code base. I primarily opened this...

`RsaPublicKey` does implement `Hash` but `RsaPrivateKey` does not, why? `rsa` should conform to [`C-COMMON-TRAITS`](https://rust-lang.github.io/api-guidelines/interoperability.html#types-eagerly-implement-common-traits-c-common-traits).

enhancement

I've recently needed to compare a symmetric hmac signature against a `&[u8]`. Usually, this is easily possible via [`Mac::verify_slice`](https://docs.rs/hmac/latest/hmac/trait.Mac.html#tymethod.verify_slice) but this moved `self` and I only had `&mut self`. I...

digest

As per [RFC7517 section 4](https://datatracker.ietf.org/doc/html/rfc7517#section-4) (fourth paragraph) > Additional members can be present in the JWK; if not understood by implementations encountering them, they MUST be ignored. But currently, if...

elliptic-curve

The application type for cbor should be ``application/cbor`` as defined in https://www.rfc-editor.org/rfc/rfc7049.html#section-7.3 and https://www.iana.org/assignments/media-types/media-types.xhtml#application .

I didn't find anything specific to array equality in the JSON spec, but in my opinion, this should be considered equal: ```rust use serde_json::json; fn main() { let a =...

Hey! Erstmal vielen Dank für deine Ressourcen und besonders für die Vorträge. Leider scheint `\parencite` und `\footcite` nicht zu funktionieren. Nach langem probieren und auch versuchen, zu debuggen, komme ich...