There's no such thing as SSSE2 :)

This commit is contained in:
Frank Denis
2015-11-01 11:11:57 +01:00
parent 65ccbaa9b7
commit 03546ef367
4 changed files with 4 additions and 6 deletions
@@ -1,6 +1,4 @@
#define BLAKE2_USE_SSSE2
#include <stdint.h>
#include <string.h>
@@ -1,5 +1,5 @@
#define BLAKE2_USE_SSSE2
#define BLAKE2_USE_SSSE3
#define BLAKE2_USE_SSE41
#include <stdint.h>
@@ -1,5 +1,5 @@
#define BLAKE2_USE_SSSE2
#define BLAKE2_USE_SSSE3
#include <stdint.h>
#include <string.h>
@@ -14,8 +14,8 @@
#ifndef blake2b_round_H
#define blake2b_round_H
#ifndef BLAKE2_USE_SSSE2
# error BLAKE2_USE_SSSE2 must be defined in order to use this file
#ifndef BLAKE2_USE_SSSE3
# error BLAKE2_USE_SSSE3 must be defined in order to use this file
#endif
#define LOADU(p) _mm_loadu_si128( (const __m128i *)(const void *)(p) )