aboutsummaryrefslogtreecommitdiffstats
path: root/doc/manual
Commit message (Collapse)AuthorAgeFilesLines
* Document how to use TLS-AttackerJack Lloyd2017-09-021-0/+18
|
* Change http://botan.randombit.net to https URIsJack Lloyd2017-09-011-1/+1
| | | | | | Not a big deal since the site already uses HSTS, but whatever. [ci skip]
* Correct manual re key agreement schemesJack Lloyd2017-08-291-6/+10
| | | | See #1166
* Add some docs about fuzzingJack Lloyd2017-08-292-0/+71
|
* Add dh functions in ffiKonstantinos Kolelis2017-08-221-1/+16
|
* Add http_util to module policies (GH #1109)René Korthaus2017-08-071-1/+3
| | | | | | http_util is required by the x509 module to perform online OCSP checks, which should be defaulted to ON. Without being part of the policy, it would be disabled.
* Add Streebog hash (GOST R 34.11-2012).Daniel Wyatt2017-08-041-0/+1
|
* Add ChaCha_RNGJack Lloyd2017-07-311-0/+13
|
* Remove "pkcs11" provider paramater for pk ops in handbook and testsRené Korthaus2017-07-041-4/+4
| | | | | | | | | We have special key types for PKCS#11 public and private keys. When using the PK ops classes, passing the "pkcs11" provider parameter is not necessary, as the PK ops is internally chosen by the PKCS#11 key class, in contrast to other providers such as openssl, which don't have special key classes. Updates the handbook code examples and the tests.
* Updated key checking in manualNever2017-06-161-1/+25
|
* Add botan_hash_copy_state FFI function.Daniel Wyatt2017-05-251-0/+4
|
* Make Botan compile with LibreSSL again.Alexander Bluhm2017-05-241-1/+1
| | | | | | Add some #ifdef LIBRESSL_VERSION_NUMBER in addition to the OPENSSL_VERSION_NUMBER switch. Narrow down API compatiblity between LibreSSL and OpenSSL version in docs.
* Doc and 32-bit build fixesJack Lloyd2017-05-222-0/+4
|
* Add HOTP (RFC 4226) and TOTP (RFC 6238)Jack Lloyd2017-05-191-0/+64
|
* Fix botan_privkey_load_rsa misleading parameter names.Daniel Wyatt2017-05-131-2/+2
| | | | RSA_PrivateKey's constructor take p,q,e,d,n.
* Mention LibreSSL in the docs.Alexander Bluhm2017-04-281-0/+1
| | | | | The --with-openssl compile option can also used with LibreSSL. Move the feature from the todo list to the documentation.
* Fix typoAntonio Coratelli2017-04-211-1/+1
|
* Fix typo in building.rst [ci skip]René Korthaus2017-04-181-1/+1
|
* Support for ElGamal in FFI interfaceKrzysztof Kwiatkowski2017-04-141-0/+12
| | | | | | * Adds `botan_pubkey_load_elgamal' and `botan_privkey_load_elgamal' functions to FFI interface. * Adds test `ffi_test_elgamal'
* Add HMAC CLI commandRené Korthaus2017-04-131-0/+5
|
* Merge GH #966 Add SM3 hash functionJack Lloyd2017-04-051-0/+1
|\
| * Add SM3 hash functionDaniel Wyatt2017-04-031-0/+1
| |
* | Add block cipher interface to C APIJack Lloyd2017-04-041-0/+44
| |
* | Merge GH #964 Add various useful FFI functions for public key cryptoJack Lloyd2017-04-041-0/+28
|\ \ | |/ |/|
| * Document new functionsJack Lloyd2017-04-021-0/+28
| |
* | Fix doc formattingJack Lloyd2017-04-021-1/+2
| |
* | Add some more useful bigint functions to C interfaceJack Lloyd2017-03-311-2/+33
|/
* Document functions added in GH #899Jack Lloyd2017-03-291-0/+30
|
* Document new C APIs added in GH #946Jack Lloyd2017-03-291-5/+186
|
* Merge GH #942 Avoid passing IP as hostname in tls_client command line utilJack Lloyd2017-03-281-0/+4
|\
| * Add documentation that SNI must be FQDN.Alexander Bluhm2017-03-271-0/+4
| | | | | | | | server_info parameter of TLS::Client must not be an IP address.
* | Fix incorrect password truncation in bcrypt password hashing.Jack Lloyd2017-03-241-4/+21
|/ | | | | | | | | | The 56 char bound is bogus; Blowfish itself allows at most 448 bits in the key schedule, but Bcrypt's modification allows up to 72 chars for the password. Bug pointed out by Solar Designer. Also reject work factors 0...3 since all other extant bcrypt implementations require at least work factor 4. Adds more bcrypt tests generated by crypt_bcrypt and OpenBSD's version.
* Use a hardcoded URL for the PDF downloadRené Korthaus2017-03-231-1/+1
|
* Merge GH #923 Build PDF handbookJack Lloyd2017-03-221-1/+7
|\
| * Provide the handbook as a PDF downloadRené Korthaus2017-03-161-1/+7
| | | | | | | | | | | | | | Extends the website script to include a link to the manual as a PDF file for download. Also includes links to search and index only for html, as it does not work for latex.
* | Add a note that no RNG is part of the minimized buildRené Korthaus2017-03-171-2/+12
|/ | | | | Also adds a description for the --list-modules and --module-policy option.
* Document --with-build-dir correctly in building manual.Alexander Bluhm2017-03-091-1/+1
|
* Merge GH #905 Fix TLS doc re default DH minimum sizeJack Lloyd2017-03-071-1/+1
|\
| * Fix the default value (2048) of minimum_dh_group_size in the documentationlouiz’2017-03-071-1/+1
| |
* | Allow OCSP requests without the full subject certificateNuno Goncalves2017-03-041-6/+18
|/ | | | | | | | | | | | | | | | A OCSP request doesn't need the full subject certificate. This extends the API to require instead of the subject certificate: * OCSP::Request: subject serial. * OCSP::online_check: subject serial AND ocsp responder url. API breaking change: * removal of OCSP::Request::subject() as OCSP::Request doesn't need to hold the certificate, but only the serial. Signed-off-by: Nuno Goncalves <[email protected]>
* Document hash, rng, mac, pbkdf and kdf in ffi handbookRené Korthaus2017-02-191-24/+73
|
* Add all ffi functions and types to ffi.rstRené Korthaus2017-02-191-19/+236
|
* Add more docs for ffiRené Korthaus2017-02-191-3/+73
|
* Add minimal example code to tls handbookRené Korthaus2017-02-131-2/+237
|
* Complete the rename of Python wrapperJack Lloyd2017-01-241-1/+1
| | | | Where referenced in CI scripts, docs and such
* Remove --with-pkcs11 option from CI scripts, docsRené Korthaus2017-01-111-1/+1
|
* Switch to readthedocs Sphinx themeJack Lloyd2017-01-071-4/+32
| | | | | | | Move some text and change some headers to look better with how rtd theme formats the table of contents. GH #822
* Update for 2.0.0 release2.0.0Jack Lloyd2017-01-061-1/+1
|
* Fix table formatting in support.rstJack Lloyd2017-01-061-11/+9
| | | | [ci skip]
* Merge GH #802 Update version to 2.0.0, change lib and include dir namesJack Lloyd2017-01-061-6/+6
|\