Frank Denis
Frank Denis
Remove `git checkout 0.11` and use the current code. Zig 0.12 was released after minisign 0.11 was tagged.
Maybe I should tag a new version. Not a lot of changes since 0.11 but why not.
Hi! Unfortunately AES-CCM is slow in software, has low usage limits, and is not used much (besides a few things such as the Zigbee protocol, but even then, it's a...
Just curious: what is your use case for AES-CCM?
PRs are always welcome :)
Besides HTTP serving, there are now some very cool web frameworks in Zig. For example [Jetzig](https://jetzig.dev). Putting these behind nginx is a good idea, as nginx can do TLS termination,...
Seems like a duplicate of #3.
Moving the hash state to the PAKE state in order to avoid keeping the password around is a very good idea, thanks! The alternative API doesn't look very intuitive, though....
X2 should never downclock, and you're guaranteed to double the throughput. I think recent CPUs can heavily use all AVX512 instructions without down clocking. I was only able to test...
[aegis-bench.tar.gz](https://github.com/jedisct1/aegis-X/files/12208035/aegis-bench.tar.gz) Here's a simple benchmark in C you can run with a command like: ```sh ./aegis128x4 1000000 10000 ``` And to see if downclocking happens, increase the second number, and...