From a6d915e0efca1e9fcd074bc6c3d800d7d0bd2712 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Sat, 12 Feb 2011 11:47:55 +0000 Subject: gcm128.c: make it work with no-sse2. --- crypto/modes/gcm128.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'crypto') diff --git a/crypto/modes/gcm128.c b/crypto/modes/gcm128.c index 1287bce..cdb6c84 100644 --- a/crypto/modes/gcm128.c +++ b/crypto/modes/gcm128.c @@ -719,12 +719,14 @@ void CRYPTO_gcm128_init(GCM128_CONTEXT *ctx,void *key,block128_f block) gcm_init_8bit(ctx->Htable,ctx->H.u); #elif TABLE_BITS==4 # if defined(GHASH_ASM_IAX) /* both x86 and x86_64 */ +# if !defined(GHASH_ASM_X86) || defined(OPENSSL_IA32_SSE2) if (OPENSSL_ia32cap_P[1]&(1<<1)) { gcm_init_clmul(ctx->Htable,ctx->H.u); ctx->gmult = gcm_gmult_clmul; ctx->ghash = gcm_ghash_clmul; return; } +# endif gcm_init_4bit(ctx->Htable,ctx->H.u); # if defined(GHASH_ASM_X86) /* x86 only */ if (OPENSSL_ia32cap_P[0]&(1<<23)) { -- cgit v1.1