1
1
mirror of https://github.com/BLAKE2/BLAKE2 synced 2024-09-16 08:31:34 +02:00
BLAKE2/README.md

30 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2015-10-14 22:56:33 +02:00
# BLAKE2
This is the reference source code package of BLAKE2, which includes
2015-10-19 16:50:33 +02:00
* `ref/`: C implementations of BLAKE2b, BLAKE2bp, BLAKE2s, BLAKE2sp,
aimed at portability and simplicity.
2015-10-14 22:56:33 +02:00
2015-10-19 16:50:33 +02:00
* `sse/`: C implementations of BLAKE2b, BLAKE2bp, BLAKE2s, BLAKE2sp,
2015-10-14 22:56:33 +02:00
optimized for speed on CPUs supporting SSE2, SSSE3, SSE4.1, AVX, or
XOP.
2020-07-01 00:41:43 +02:00
* `neon/`: Implementations of BLAKE2{s,b} using the NEON/ASIMD ARM instruction set.
* `power8/`: Implementations of BLAKE2{s,b} for POWER8, using the VSX and Altivec extensions.
* `csharp/`: C# implementation of BLAKE2b.
2015-10-14 22:56:33 +02:00
* `b2sum/`: Command line utility to hash files, based on the `sse/`
implementations.
* `bench/`: Benchmark tool to measure cycles-per-byte speeds and produce
graphs copyright.
2016-03-12 00:32:19 +01:00
All code is triple-licensed under the [CC0](http://creativecommons.org/publicdomain/zero/1.0), the [OpenSSL Licence](https://www.openssl.org/source/license.html), or the [Apache Public License 2.0](http://www.apache.org/licenses/LICENSE-2.0),
at your choosing.
2015-10-14 22:56:33 +02:00
2015-10-19 16:49:24 +02:00
More: [https://blake2.net](https://blake2.net).
2015-10-14 22:56:33 +02:00
Contact: contact@blake2.net