From 6937aca7bc8841970d2001ba5658296673b58554 Mon Sep 17 00:00:00 2001 From: miod <> Date: Sun, 13 Sep 2015 10:02:49 +0000 Subject: [PATCH] Add a new interface, OPENSSL_cpu_caps(), to return the currently running cpu's specific hardware capabilities users of libcrypto might be interested in, as an integer value. This deprecates the existing OPENSSL_ia32cap() macro and the OPENSSL_ia32cap_loc() function (which returns the pointer so that you can mess with stuff you shouldn't mess with). Interpreting the value returned by OPENSSL_cpu_caps() is, of course, machine-dependent. Minor version bump for libcrypto. ok beck@ jsing@ --- src/lib/libcrypto/crypto/shlib_version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/libcrypto/crypto/shlib_version b/src/lib/libcrypto/crypto/shlib_version index db69fac8..7d59659d 100644 --- a/src/lib/libcrypto/crypto/shlib_version +++ b/src/lib/libcrypto/crypto/shlib_version @@ -1,3 +1,3 @@ # Don't forget to give libssl and libtls the same type of bump! major=35 -minor=0 +minor=1