Improve the definition of STITCHED_CALL in e_rc4_hmac_md5.c
authorRichard Levitte <levitte@openssl.org>
Fri, 26 Aug 2016 07:59:55 +0000 (09:59 +0200)
committerRichard Levitte <richard@levitte.org>
Fri, 26 Aug 2016 15:34:30 +0000 (17:34 +0200)
commit7f8d9b757f3e5abaa780ee109da3c992071f8513
treeaaf356829b206336e5cb9ed83b271bc759a739c3
parenta35d8fb168dd0fac89646d5cd34c675eaa3d7435
Improve the definition of STITCHED_CALL in e_rc4_hmac_md5.c

The definition of STITCHED_CALL relies on OPENSSL_NO_ASM.  However,
when a configuration simply lacks the assembler implementation for RC4
(which is where we have implemented the stitched call), OPENSSL_NO_ASM
isn't implemented.  Better, then, to rely on specific macros that
indicated that RC4 (and MD5) are implemented in assembler.

For this to work properly, we must also make sure Configure adds the
definition of RC4_ASM among the C flags.

Reviewed-by: Andy Polyakov <appro@openssl.org>
(cherry picked from commit 216e8d91033d237880cff7da0d02d46d47bae41b)
Configure
crypto/evp/e_rc4_hmac_md5.c