content-type: text/plain; charset="utf-8" Content-Disposition: inline X-RT-Original-Encoding: ascii Content-Length: 725 checking for using OpenSSL for hash functions... no We don't use OpenSSL hash functions by default. The configure.in check looks like this: # # was --enable-openssl-hash specified? # AC_ARG_ENABLE(openssl-hash, [ --enable-openssl-hash use OpenSSL for hash functions [[default=no]]], want_openssl_hash="$enableval", want_openssl_hash="checkcc") At the end of configure, config.log has the following: ISC_PLATFORM_OPENSSLHASH='#undef ISC_PLATFORM_OPENSSLHASH' We ought to change that to use the OpenSSL hash functions by default (if they're found). The openssl hash function implementations are usually better optimized than what's in libisc (they have hand-crafted assembly implementations). Mukund