aboutsummaryrefslogtreecommitdiffstats
path: root/news.rst
Commit message (Collapse)AuthorAgeFilesLines
* Merge notes about improvements to C bindingJack Lloyd2018-08-231-8/+7
|
* Update newsJack Lloyd2018-08-231-1/+2
|
* Default disable support for TLS v1.0/v1.1 and all CBC and CCM suitesJack Lloyd2018-08-221-0/+4
|
* Add TOTP to FFIJack Lloyd2018-08-161-0/+2
|
* Update newsJack Lloyd2018-08-151-0/+2
|
* Update newsJack Lloyd2018-08-131-1/+1
|
* Update newsJack Lloyd2018-08-111-0/+3
|
* Update docs and release notesJack Lloyd2018-08-071-0/+5
|
* Update newsJack Lloyd2018-08-071-0/+6
|
* Update newsJack Lloyd2018-08-051-0/+3
|
* Update documentationWambou2018-08-041-0/+2
|
* Update newsJack Lloyd2018-08-021-0/+6
|
* Fix ReST formatting [ci skip]Jack Lloyd2018-08-011-1/+1
|
* Update newsJack Lloyd2018-08-011-1/+7
|
* Update newsJack Lloyd2018-07-241-3/+11
|
* Spellcheck [ci skip]Jack Lloyd2018-07-231-3/+3
|
* Update newsJack Lloyd2018-07-181-0/+3
|
* Update news [ci skip]Jack Lloyd2018-07-131-0/+4
|
* Update password hashing default settingsJack Lloyd2018-07-131-0/+7
| | | | | | | | Bcrypt work factor 10 is looking pretty low these days, as is 100K iterations of PBKDF2. Increase bcrypt to 12 and PBKDF2 to 150K, and also transition passhash9 to using SHA-512 instead of SHA-256. Also document bcrypt better, and add speed tests for bcrypt and passhash9
* Update newsJack Lloyd2018-07-101-0/+2
|
* Bump version to 2.8.0-preJack Lloyd2018-07-061-0/+11
|
* Update for 2.7.0 release2.7.0Jack Lloyd2018-07-021-1/+1
|
* Update news [ci skip]Jack Lloyd2018-07-011-20/+42
|
* Use Botan specific CVE for ECDSA side channel [ci skip]Jack Lloyd2018-06-151-1/+1
|
* Update newsJack Lloyd2018-06-151-0/+2
|
* Update news [ci skip]Jack Lloyd2018-06-141-0/+4
|
* Updated news.rstHegedüs Márton Csaba2018-06-081-0/+2
|
* Merge GH #1594 Add ECDSA Wycheproof testsJack Lloyd2018-05-311-0/+6
|\
| * Add ECDSA tests from WycheproofJack Lloyd2018-05-311-0/+6
| |
* | Update documentationWambou2018-05-311-0/+3
|/
* Add back support for Windows Phone RNG, undeprecate UWPJack Lloyd2018-05-281-0/+3
| | | | See #1586. Reverts part of #1494
* Update newsJack Lloyd2018-05-271-0/+4
|
* Update newsJack Lloyd2018-05-231-0/+2
|
* Update newsJack Lloyd2018-05-161-0/+2
|
* Unroll DES to encrypt/decrypt 2 rounds in parallelJack Lloyd2018-05-161-0/+3
| | | | About 50% faster for CBC decrypt
* Update newsJack Lloyd2018-05-091-0/+3
|
* Update newsJack Lloyd2018-05-021-0/+2
|
* Note MSVC 2013 deprecationJack Lloyd2018-04-261-1/+3
|
* Update newsJack Lloyd2018-04-231-1/+1
|
* Update newsJack Lloyd2018-04-201-1/+1
|
* Update newsJack Lloyd2018-04-191-4/+1
|
* Precompute for multiexponentation when verifying ECC signaturesJack Lloyd2018-04-171-0/+3
| | | | | ECDSA already did this. Improves repeated ECGDSA, ECKCDSA, SM2, and GOST signature verification by 10-15%
* Update newsJack Lloyd2018-04-171-0/+6
|
* Truncate new SKIDs to 192 bitsJack Lloyd2018-04-161-0/+5
| | | | | More than long enough, and saves quite a bit of space especially for SHA-512 certificates.
* Update newsJack Lloyd2018-04-161-0/+13
|
* Clarify log message [ci skip]Jack Lloyd2018-04-121-2/+2
|
* Update newsJack Lloyd2018-04-111-0/+3
|
* Bump version to 2.7.0Jack Lloyd2018-04-101-0/+3
|
* Update for 2.6.0 release2.6.0Jack Lloyd2018-04-101-1/+7
|
* Add a Montgomery exponentiation that takes variable timeJack Lloyd2018-04-091-1/+2
| | | | | | | | In the case of RSA encryption/verification the public exponent is... public. So we don't need to carefully guard against side channels that leak the exponent. Improves RSA verification performance by 50% or more.