[PATCH] Curve point decompression

2019-07-17 Thread Wim Lewis
Now that 3.5.1 is out, is there a chance this could be looked at? On Wed, May 29, 2019 at 01:25:08AM -0700, Wim Lewis wrote: I've pushed some work-in-progress to a git repository here: https://git.lysator.liu.se/wiml/nettle On Thursday, June 6, 2019 11:41:49 PM PDT, Wim Lewis wrote: I've

Re: Some .stamp files slipped into the tarball

2019-07-17 Thread Niels Möller
Justus Winter writes: > I read the reference, and I don't see how it applies here. Right, it's a bit different. > For the > record, this is the build failure that I'm referring to: > > % tar xf nettle-3.5.1.tar.gz > % cp -r nettle-3.5.1 nettle > % cd nettle > % ./configure > [...] > % make >

Re: nettle-meta interface for MACs

2019-07-17 Thread Daiki Ueno
ni...@lysator.liu.se (Niels Möller) writes: > It's also not directly usable with umac, which takes a nonce (and auto > increment in umac*_digest). Should the generic interface try to > accomodate macs that require a nonce? In terms of the meta interface, I guess we could add a set_nonce function

Re: Rust bindings

2019-07-17 Thread Justus Winter
ni...@lysator.liu.se (Niels Möller) writes: > Have you looked at nettle's pgp.h? No. > This code is not really in a useful state. It aims to be able to write > out a public RSA key in openpgp format, and doesn't quite succeed at > that. Well, a key packet on its own is not useful, you also

Re: Some .stamp files slipped into the tarball

2019-07-17 Thread Justus Winter
ni...@lysator.liu.se (Niels Möller) writes: > Justus Winter writes: > >> just a small bug report, there are some .stamp files that got included >> in the release by accident. I noticed because it caused build problems, >> likely only due to the fact that my build process copied the files once,

Re: Rust bindings

2019-07-17 Thread Niels Möller
Justus Winter writes: > When we started the project, we evaluated cryptographic libraries, and > decided that Nettle would be the best fit for us, even if it involved > creating language bindings first. Looking back after one and a half > years, we're still happy with our choice. So let me

Re: Some .stamp files slipped into the tarball

2019-07-17 Thread Niels Möller
Justus Winter writes: > just a small bug report, there are some .stamp files that got included > in the release by accident. I noticed because it caused build problems, > likely only due to the fact that my build process copied the files once, > changing the mtimes in the process. Some stamp

Re: nettle-meta interface for MACs

2019-07-17 Thread Niels Möller
Daiki Ueno writes: > This is, however, not usable for HMAC, because Nettle build uses > -Wcast-function-type and the set_key member has an incompatible type > with hmac_*_set_key, which requires a key length argument as HMAC allows > arbitrary key length up to the hash block size. It's also not