summaryrefslogtreecommitdiff
path: root/src/lib/libssl
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl')
-rw-r--r--src/lib/libssl/src/crypto/engine/eng_rsax.c7
-rw-r--r--src/lib/libssl/src/crypto/evp/e_rc4_hmac_md5.c4
2 files changed, 6 insertions, 5 deletions
diff --git a/src/lib/libssl/src/crypto/engine/eng_rsax.c b/src/lib/libssl/src/crypto/engine/eng_rsax.c
index 358dac2088..728b89d5f3 100644
--- a/src/lib/libssl/src/crypto/engine/eng_rsax.c
+++ b/src/lib/libssl/src/crypto/engine/eng_rsax.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: eng_rsax.c,v 1.10 2014/07/12 16:03:37 miod Exp $ */ 1/* $OpenBSD: eng_rsax.c,v 1.11 2014/08/11 13:29:43 bcook Exp $ */
2/* Copyright (c) 2010-2010 Intel Corp. 2/* Copyright (c) 2010-2010 Intel Corp.
3 * Author: Vinodh.Gopal@intel.com 3 * Author: Vinodh.Gopal@intel.com
4 * Jim Guilford 4 * Jim Guilford
@@ -81,8 +81,9 @@
81/* RSAX is available **ONLY* on x86_64 CPUs */ 81/* RSAX is available **ONLY* on x86_64 CPUs */
82#undef COMPILE_RSAX 82#undef COMPILE_RSAX
83 83
84#if (defined(__x86_64) || defined(__x86_64__) || \ 84#if !defined(OPENSSL_NO_ASM) && defined(RSA_ASM) && \
85 defined(_M_AMD64) || defined (_M_X64)) && !defined(OPENSSL_NO_ASM) 85 (defined(__x86_64) || defined(__x86_64__) || \
86 defined(_M_AMD64) || defined (_M_X64))
86#define COMPILE_RSAX 87#define COMPILE_RSAX
87static ENGINE *ENGINE_rsax (void); 88static ENGINE *ENGINE_rsax (void);
88#endif 89#endif
diff --git a/src/lib/libssl/src/crypto/evp/e_rc4_hmac_md5.c b/src/lib/libssl/src/crypto/evp/e_rc4_hmac_md5.c
index 05c79ff09d..1f085af403 100644
--- a/src/lib/libssl/src/crypto/evp/e_rc4_hmac_md5.c
+++ b/src/lib/libssl/src/crypto/evp/e_rc4_hmac_md5.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: e_rc4_hmac_md5.c,v 1.4 2014/07/10 22:45:57 jsing Exp $ */ 1/* $OpenBSD: e_rc4_hmac_md5.c,v 1.5 2014/08/11 13:29:43 bcook Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 2011 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 2011 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -99,7 +99,7 @@ rc4_hmac_md5_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *inkey,
99 return 1; 99 return 1;
100} 100}
101 101
102#if !defined(OPENSSL_NO_ASM) && ( \ 102#if !defined(OPENSSL_NO_ASM) && defined(RC4_MD5_ASM) && ( \
103 defined(__x86_64) || defined(__x86_64__) || \ 103 defined(__x86_64) || defined(__x86_64__) || \
104 defined(_M_AMD64) || defined(_M_X64) || \ 104 defined(_M_AMD64) || defined(_M_X64) || \
105 defined(__INTEL__) ) && \ 105 defined(__INTEL__) ) && \