aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-04-18 16:38:55 +0000
committerlloyd <[email protected]>2013-04-18 16:38:55 +0000
commitd6d870741bb2272b564153b26a638fb6e29ddd89 (patch)
treecc7286495890af2c34014081e2ad26af8f6e1588 /doc
parenta084169e019eecb867c2cc7e28f7bc7c47e1e532 (diff)
Initial notes for 1.11.4
Diffstat (limited to 'doc')
-rw-r--r--doc/relnotes/1_11_4.rst17
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/relnotes/1_11_4.rst b/doc/relnotes/1_11_4.rst
index a30db0699..72418e9d5 100644
--- a/doc/relnotes/1_11_4.rst
+++ b/doc/relnotes/1_11_4.rst
@@ -1,3 +1,20 @@
Version 1.11.4, Not Yet Released
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+* CPU specific extensions are now always compiled if support for the
+ operations is available at build time, and flags enabling use of
+ extra operations (such as SSE2) are only included when compiling
+ files which specifically request support. This means, for instance,
+ that the SSSE3 and AES-NI implementations of AES are always included
+ in x86 builds, relying on runtime cpuid checking to prevent their
+ use on CPUs that do not support those operations.
+
+* Adds a new interface for benchmarking, :cpp:func:`time_algorithm_ops`,
+ which returns a map of operations to operations per second. For
+ instance now both encrypt and decrypt speed of a block cipher can be
+ checked, as well as the key schedule of all keyed algorithms. It
+ additionally supports AEAD modes.
+
+* A new TLS policy :cpp:class:`NSA_Suite_B_128` is available, which
+ will negotiate only the 128-bit security NSA Suite B. See
+ :rfc:`6460` for more information about Suite B.