Disable sha1,sha256,sha512 avx,avx2,sse3 crypto implementations.

Re-implement them later, once stable
This commit is contained in:
Harshavardhana
2015-01-06 16:49:30 -08:00
parent d58f68ccaa
commit 462808b87a
11 changed files with 52 additions and 58 deletions

View File

@@ -47,6 +47,7 @@
# This code schedules 1 block at a time, with 4 lanes per block
########################################################################
#ifdef HAS_AVX
#include "asm.S"
## assume buffers not aligned
@@ -491,3 +492,4 @@ _SHUF_00BA:
# shuffle xDxC -> DC00
_SHUF_DC00:
.octa 0x0b0a090803020100FFFFFFFFFFFFFFFF
#endif

View File

@@ -48,6 +48,7 @@
# This code schedules 2 blocks at a time, with 4 lanes per block
########################################################################
#ifdef HAS_AVX2
#include "asm.S"
## assume buffers not aligned
@@ -768,3 +769,4 @@ _SHUF_00BA:
# shuffle xDxC -> DC00
_SHUF_DC00:
.octa 0x0b0a090803020100FFFFFFFFFFFFFFFF,0x0b0a090803020100FFFFFFFFFFFFFFFF
#endif

View File

@@ -46,6 +46,7 @@
#
########################################################################
#ifdef HAS_SSE41
#include "asm.S"
## assume buffers not aligned
@@ -504,3 +505,4 @@ _SHUF_00BA:
# shuffle xDxC -> DC00
_SHUF_DC00:
.octa 0x0b0a090803020100FFFFFFFFFFFFFFFF
#endif