1
1
mirror of https://github.com/BLAKE2/BLAKE2 synced 2024-09-07 07:10:35 +02:00

update README.md

This commit is contained in:
Samuel Neves 2020-06-30 23:41:43 +01:00
parent 8c6526f992
commit d4615d8473

View File

@ -9,6 +9,10 @@ This is the reference source code package of BLAKE2, which includes
optimized for speed on CPUs supporting SSE2, SSSE3, SSE4.1, AVX, or
XOP.
* `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.
* `b2sum/`: Command line utility to hash files, based on the `sse/`