Jay Petacat
4b86c1e3bb
crypto: Add BLAKE3 hashing algorithm
...
This is a translation of the [official reference implementation][1] with
few other changes. The bad news is that the reference implementation is
designed for simplicity and not speed, so there's a lot of room for
performance improvement. The good news is that, according to the crypto
benchmark, the implementation is still fast relative to the other
hashing algorithms:
```
md5: 430 MiB/s
sha1: 386 MiB/s
sha256: 191 MiB/s
sha512: 275 MiB/s
sha3-256: 233 MiB/s
sha3-512: 137 MiB/s
blake2s: 464 MiB/s
blake2b: 526 MiB/s
blake3: 576 MiB/s
poly1305: 1479 MiB/s
hmac-md5: 653 MiB/s
hmac-sha1: 553 MiB/s
hmac-sha256: 222 MiB/s
x25519: 8685 exchanges/s
```
[1]: https://github.com/BLAKE3-team/BLAKE3
2020-02-01 23:03:23 -05:00
..
2019-12-10 11:09:41 -05:00
2020-01-07 13:40:17 -05:00
2020-01-29 12:13:53 -05:00
2020-02-01 23:03:23 -05:00
2020-01-29 17:38:42 -06:00
2020-01-31 22:33:55 +11:00
2020-01-21 21:46:06 -05:00
2020-01-31 22:33:17 +11:00
2020-01-29 22:22:01 -06:00
2020-01-30 00:27:44 -06:00
2020-01-21 03:17:36 +11:00
2020-01-25 23:25:29 -05:00
2020-01-07 12:07:44 -05:00
2020-01-21 21:46:06 -05:00
2019-12-11 02:08:33 -05:00
2019-12-08 22:53:51 -05:00
2020-02-01 14:29:16 -05:00
2019-11-08 15:57:24 -05:00
2020-01-30 00:27:44 -06:00
2020-01-23 13:02:45 -05:00
2020-01-30 01:12:21 -06:00
2019-09-25 23:35:41 -04:00
2020-01-06 15:34:50 -05:00
2019-11-21 20:43:41 -05:00
2020-01-31 18:25:58 -05:00
2020-01-29 22:22:00 -06:00
2019-11-08 15:57:24 -05:00
2019-09-25 23:35:41 -04:00
2019-09-25 23:35:41 -04:00
2019-11-27 03:37:50 -05:00
2020-01-29 22:22:01 -06:00
2020-01-29 22:22:01 -06:00
2020-01-29 22:22:00 -06:00
2020-01-30 20:57:31 -05:00
2020-01-29 16:09:07 -05:00
2020-01-29 12:13:53 -05:00
2020-01-14 15:12:30 -05:00
2019-11-29 21:55:27 -05:00
2020-02-01 23:03:23 -05:00
2019-12-20 18:28:56 -05:00
2020-01-30 10:01:40 -05:00
2019-09-25 23:35:41 -04:00
2020-01-18 17:56:53 -05:00
2019-11-27 03:37:50 -05:00
2019-10-29 22:59:30 -04:00
2020-01-29 22:22:00 -06:00
2020-01-31 22:33:56 +11:00
2020-01-31 22:33:17 +11:00
2020-01-29 22:22:01 -06:00
2019-10-11 18:13:24 -04:00
2020-01-29 12:21:29 -06:00
2019-09-25 23:35:41 -04:00
2020-01-29 17:38:42 -06:00
2020-01-07 16:42:14 -05:00
2019-11-12 17:55:54 +02:00
2020-01-29 22:22:00 -06:00
2019-09-25 23:35:41 -04:00
2020-01-14 13:06:46 -05:00
2020-01-21 03:17:40 +11:00
2020-01-19 20:54:04 -05:00
2020-01-31 22:33:17 +11:00
2020-01-18 17:46:44 -05:00
2020-01-31 22:33:55 +11:00
2020-01-29 22:22:01 -06:00
2019-12-10 11:09:41 -05:00
2020-01-29 22:22:00 -06:00
2020-01-29 22:22:01 -06:00
2019-12-08 22:53:51 -05:00
2019-11-27 03:37:50 -05:00
2020-01-30 12:05:57 -05:00
2020-01-31 22:33:17 +11:00
2020-01-29 22:22:01 -06:00
2020-01-28 16:22:09 -05:00
2020-01-02 18:53:16 +01:00
2019-12-12 18:33:44 -05:00
2020-01-19 00:11:45 +01:00
2020-01-19 20:54:04 -05:00
2020-01-23 13:02:45 -05:00
2020-01-30 00:27:44 -06:00
2020-01-06 15:34:50 -05:00
2019-11-08 15:57:24 -05:00
2020-01-29 22:22:00 -06:00
2019-12-08 22:53:51 -05:00
2019-09-25 23:35:41 -04:00