1
1
mirror of https://github.com/BLAKE2/BLAKE2 synced 2024-11-08 14:59:19 +01:00
BLAKE2/README.md

26 lines
900 B
Markdown
Raw 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.
* `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