diff options
author | lloyd <[email protected]> | 2013-03-19 15:17:27 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-03-19 15:17:27 +0000 |
commit | ff784ce30d2bdcf8b7d3143be2ecf1c2dc6b8957 (patch) | |
tree | 587a0f6b33b84c9cc45218093a408e434bead2ac /doc | |
parent | 827f2983a1e6efae6141e9b7ab148a3ae44e671b (diff) |
Remove the Turing and WiderWAKE4+1 stream cipher implementations.
Both never saw much deployment or analysis.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/algos.rst | 5 | ||||
-rw-r--r-- | doc/examples/bench.cpp | 2 | ||||
-rw-r--r-- | doc/relnotes/1_11_3.rst | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/doc/algos.rst b/doc/algos.rst index 5e4579a83..8b2f14b36 100644 --- a/doc/algos.rst +++ b/doc/algos.rst @@ -57,8 +57,9 @@ Block ciphers Stream Ciphers ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - * RC4, Salsa20/XSalsa20 - * Obsolete designs Turing and WiderWake4+1 + * RC4 of course + * Salsa20/XSalsa20 + * CTR and OFB modes also present a stream cipher interface Authentication Codes ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ diff --git a/doc/examples/bench.cpp b/doc/examples/bench.cpp index 5378b3e6a..48ba5b48c 100644 --- a/doc/examples/bench.cpp +++ b/doc/examples/bench.cpp @@ -28,7 +28,7 @@ const std::string algos[] = { "GOST", "IDEA", "KASUMI", - "Lion(SHA-256,Turing,8192)", + "Lion(SHA-256,Salsa20,8192)", "Luby-Rackoff(SHA-512)", "MARS", "MISTY1", diff --git a/doc/relnotes/1_11_3.rst b/doc/relnotes/1_11_3.rst index 277b670da..50ef471cf 100644 --- a/doc/relnotes/1_11_3.rst +++ b/doc/relnotes/1_11_3.rst @@ -8,6 +8,8 @@ Version 1.11.3, Not Yet Released :cpp:class:`Key_Length_Specification` so the full details of what keylengths are supported is now available in keyed filters. +* The + * New functions for symmetric encryption are included in cryptobox.h * A new function :cpp:func:`algorithm_kat_detailed` returns a string |