Merge pull request #265

1b19ee0 disable non-working optimized slow_hash on 32 bit intel (Javier Smooth)
This commit is contained in:
Riccardo Spagni 2015-05-05 13:56:35 +02:00
commit b63e8410b9
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -37,7 +37,7 @@
#include "hash-ops.h"
#include "oaes_lib.h"
#if defined(__x86_64__) || defined(__i386)
#if defined(__x86_64__)
// Optimised code below, uses x86-specific intrinsics, SSE2, AES-NI
// Fall back to more portable code is down at the bottom