Zach Collier

Results 37 comments of Zach Collier

I have a draft ready for this, please see my comments:#271

Another library to consider is https://github.com/lestrrat-go/jwx

Could we add [key_ops](https://tools.ietf.org/html/rfc7517#section-4.3) too? As far as I've looked, that is also the only other missing parameter. (See the [registry](https://www.iana.org/assignments/jose/jose.xhtml) under the "JSON Web Key Parameters" heading)

Like ECDSA, we use systems that sign digests. ES224, ES256, ES384, ES512 work well with this. PureEdDSA prefers the original message. It would be awesome to have Ed25519ph that conforms...

As far as API, how about `signDigest` and `verifyDigest`? Looking at this [line](https://github.com/paulmillr/noble-ed25519/blob/main/mod.ts#L11): ```Javascript export { getPublicKey, sign, verify, utils, CURVE, Point, ExtendedPoint, RistrettoPoint }; ``` The exported would become:...

I guess the question is why escape and not error for the range U+D800 to U+DFFF? Why not just leave them, or specify that they should be replacement characters? Escaping...

Thank you for your thoughtful reply! My plan for this week is to play with control characters in `jq`. I'd like to better document particular issues with using non-escaped control...

I'm writing this on my phone while waiting for an appointment. I forgot to ask, why doesn't this spec require DEL and the Unicode range controls to be escaped?

Hello again! I was also wondering if #159 had been considered?