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

..03-May-2022-

b2sum/H03-Jul-2020-520416

bench/H03-Jul-2020-158106

csharp/H03-Jul-2020-3,6262,799

neon/H03-Jul-2020-4,4823,342

power8/H03-Jul-2020-3,2522,438

ref/H03-Jul-2020-2,6431,985

sse/H03-Jul-2020-3,9162,912

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

.gitignoreH A D03-Jul-2020365 2827

.travis.ymlH A D03-Jul-20205.9 KiB232222

COPYINGH A D03-Jul-20206.9 KiB122109

README.mdH A D03-Jul-20201.1 KiB3018

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* `neon/`: Implementations of BLAKE2{s,b} using the NEON/ASIMD ARM instruction set.
13
14* `power8/`: Implementations of BLAKE2{s,b} for POWER8, using the VSX and Altivec extensions.
15
16* `csharp/`: C# implementation of BLAKE2b.
17
18* `b2sum/`: Command line utility to hash files, based on the `sse/`
19  implementations.
20
21* `bench/`: Benchmark tool to measure cycles-per-byte speeds and produce
22  graphs copyright.
23
24All 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),
25at your choosing.
26
27More: [https://blake2.net](https://blake2.net).
28
29Contact: contact@blake2.net
30