From: Andy Polyakov Date: Tue, 4 Oct 2005 06:25:39 +0000 (+0000) Subject: Zap DES_UNROLL when SMALL_FOOTPRINT is in effect. X-Git-Tag: OpenSSL_0_9_8k^2~1780 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=3d6312e8072ced4d00657835229772f93429a149;p=oweals%2Fopenssl.git Zap DES_UNROLL when SMALL_FOOTPRINT is in effect. --- diff --git a/crypto/des/des_locl.h b/crypto/des/des_locl.h index 4b9ecff233..f7ed6ae19a 100644 --- a/crypto/des/des_locl.h +++ b/crypto/des/des_locl.h @@ -425,4 +425,8 @@ extern const DES_LONG DES_SPtrans[8][64]; void fcrypt_body(DES_LONG *out,DES_key_schedule *ks, DES_LONG Eswap0, DES_LONG Eswap1); + +#ifdef OPENSSL_SMALL_FOOTPRINT +#undef DES_UNROLL +#endif #endif