Michael Rosenberg

Results 157 comments of Michael Rosenberg

Sounds great, thanks!

Hmm, so `PublicKey` wraps `MontgomeryPoint` which wraps `[u8; 32]` and all of them autoderive `Debug`. What happens if you do `println!("{:x?}", my_pubkey)`

Great catch, ty! This looks fine to me but I'm not the most familiar with how NAF is used in our backends. @tarcieri wanna be another set of eyes?

Ok, I was wondering how it's even possible that using a width-5 NAF representation even works with a `NafLookup8`. The answer is that the `NafLookup8` stores strictly more information than...

Thank you! Just two things: 1. Can you explain how you generated the PEM/DER test vectors and put them in a comment? 2. Maybe relatedly, why precisely is the `public_key`...

Ah, I see the answer to question 2 is that it's specified in [RFC 8410 §7](https://www.rfc-editor.org/rfc/rfc8410.html#section-7). Could you write that in a comment somewhere? It looks like the PEM is...

Thank you so much for this! I might take a little bit to go thru it, but this is super exciting. Stating an initial opinion: I'm happy to merge code...