aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-10-07 15:50:48 -0400
committerJack Lloyd <[email protected]>2016-10-07 15:50:48 -0400
commit36220cebaae551f3e7c22e2abd8a8ce848e56892 (patch)
tree3b9aca25bf2437b7cde4f4df7e3bb876a139c264 /doc
parentb2209d7ebe29bfe2ab5d25eb2be7c51d42ea2a46 (diff)
parentc2d88a0c4e0d2b6aa461cf7c415eea23ff3994c2 (diff)
Merge GH #645 TLS compressed points
Diffstat (limited to 'doc')
-rw-r--r--doc/manual/tls.rst13
-rw-r--r--doc/news.rst2
2 files changed, 15 insertions, 0 deletions
diff --git a/doc/manual/tls.rst b/doc/manual/tls.rst
index 6c1ca42f2..d0e63b9f8 100644
--- a/doc/manual/tls.rst
+++ b/doc/manual/tls.rst
@@ -594,6 +594,19 @@ policy settings from a file.
No other values are currently defined.
+ .. cpp:function:: bool use_ecc_point_compression() const
+
+ Prefer ECC point compression.
+
+ Signals that we prefer ECC points to be compressed when transmitted to us.
+ The other party may not support ECC point compression and therefore may still
+ send points uncompressed.
+
+ Note that the certificate used during authentication must also follow the other
+ party's preference.
+
+ Default: false
+
.. cpp:function:: std::vector<byte> compression() const
Return the list of compression methods we are willing to use, in order of
diff --git a/doc/news.rst b/doc/news.rst
index d831d5b10..f8c2fb393 100644
--- a/doc/news.rst
+++ b/doc/news.rst
@@ -4,6 +4,8 @@ Release Notes
Version 1.11.33, Not Yet Released
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+* Add support for the TLS Supported Point Formats Extension (RFC 4492).
+
* Fix entropy source selection bug on Windows, which caused the
CryptoAPI entropy source to be not available under its normal name
"win32_cryptoapi" but instead "dev_random". GH #644