aboutsummaryrefslogtreecommitdiffstats
path: root/doc/news.rst
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2015-12-19 15:36:40 -0500
committerJack Lloyd <[email protected]>2015-12-19 15:36:40 -0500
commitb48e6fb097c62bb246629ee7a182c57e497e4130 (patch)
tree0cb8ea2d05a89f5e90467f323ae56268d4d3480e /doc/news.rst
parentd774a9edc46ffcebb28205a678058f083ea75c28 (diff)
CLI rewrite
The command line tools' origin as a collection of examples and test programs glued together led to some unfortunate problems; lots of hardcoded values, missing parameters, and obsolete crypto. Adds a small library for writing command line programs of the sort needed here (cli.h), which cuts the length of many of the commands in half and makes commands more pleasant to write and extend. Generalizes a lot of the commands also, eg previously only signing/verification with DSA/SHA-1 was included! Removes the fuzzer entry point since that's fairly useless outside of an instrumented build. Removes the in-library API for benchmarking.
Diffstat (limited to 'doc/news.rst')
-rw-r--r--doc/news.rst8
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/news.rst b/doc/news.rst
index e9b3d1449..60f90e0b9 100644
--- a/doc/news.rst
+++ b/doc/news.rst
@@ -8,8 +8,12 @@ Version 1.11.26, Not Yet Released
Previously the library would in many cases throw `std::runtime_error`
or `std::invalid_argument` exceptions which would make it hard to determine
the source of the error in some cases.
-
-* Enable RdRand entropy source on Windows/MSVC.
+
+* The command line interface has been mostly rewritten. The syntax of
+ many of the programs has changed, and a number have been extended with
+ new features and options.
+
+* Enable RdRand entropy source on Windows/MSVC. GH #364
Version 1.11.25, 2015-12-07
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^