• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

b2sum/H23-Jul-2019-520416

bench/H23-Jul-2019-158106

csharp/H23-Jul-2019-3,6262,799

neon/H23-Jul-2019-4,4423,313

ref/H23-Jul-2019-2,6431,985

sse/H23-Jul-2019-3,9162,912

testvectors/H03-May-2022-69,73169,675

.gitignoreH A D23-Jul-2019365 2827

COPYINGH A D23-Jul-20196.9 KiB122109

README.mdH A D23-Jul-2019900 2616

README.md

1# BLAKE2
2
3This is the reference source code package of BLAKE2, which includes
4
5* `ref/`: C implementations of BLAKE2b, BLAKE2bp, BLAKE2s, BLAKE2sp,
6  aimed at portability and simplicity.
7
8* `sse/`: C implementations of BLAKE2b, BLAKE2bp, BLAKE2s, BLAKE2sp,
9  optimized for speed on CPUs supporting SSE2, SSSE3, SSE4.1, AVX, or
10  XOP.
11
12* `csharp/`: C# implementation of BLAKE2b.
13
14* `b2sum/`: Command line utility to hash files, based on the `sse/`
15  implementations.
16
17* `bench/`: Benchmark tool to measure cycles-per-byte speeds and produce
18  graphs copyright.
19
20All 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),
21at your choosing.
22
23More: [https://blake2.net](https://blake2.net).
24
25Contact: contact@blake2.net
26