Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bump the FFI version due to addition of CRL support | Jack Lloyd | 2019-12-14 | 1 | -2/+2 |
| | |||||
* | Fix LGTM warning about duplicate code in Python wrapper | Jack Lloyd | 2019-12-08 | 1 | -23/+18 |
| | |||||
* | Fix some pylint warnings | Jack Lloyd | 2019-12-06 | 1 | -0/+1 |
| | |||||
* | Add CRL support for Python binding | Pavol Žáčik | 2019-12-03 | 1 | -22/+84 |
| | |||||
* | Add missing MPI functions to Python binding | Pavol Žáčik | 2019-12-02 | 1 | -2/+14 |
| | |||||
* | Add Python documentation for the X509Cert class | Pavol Žáčik | 2019-10-22 | 1 | -4/+4 |
| | |||||
* | Fix Python not_before/not_after | Pavol Žáčik | 2019-10-22 | 1 | -2/+6 |
| | |||||
* | Improve Python allowed_usage and add tests | Pavol Žáčik | 2019-10-22 | 1 | -3/+19 |
| | | | | Add tests for Python verify function | ||||
* | Add missing X509 Python functions | Pavol Žáčik | 2019-10-22 | 1 | -1/+57 |
| | | | | Make Python verify function prettier | ||||
* | Add support for TOTP in Python wrapper | Jack Lloyd | 2019-09-23 | 1 | -1/+24 |
| | |||||
* | Deprecate some more redundant ffi functions | Jack Lloyd | 2019-08-19 | 1 | -6/+15 |
| | |||||
* | Have botan2.py generate DLL list by platform | Jack Lloyd | 2019-08-06 | 1 | -3/+11 |
| | | | | | | No reason to try loading botan.dll on Linux, etc... GH #2059 | ||||
* | Run Python tests on Windows as well | Jack Lloyd | 2019-08-06 | 1 | -1/+1 |
| | | | | GH #2059 | ||||
* | Lint fixes | Jack Lloyd | 2019-06-05 | 1 | -2/+3 |
| | |||||
* | Add __hash__ for MPI | Jack Lloyd | 2019-06-03 | 1 | -0/+3 |
| | |||||
* | Lint fixes | Jack Lloyd | 2019-04-27 | 1 | -4/+8 |
| | |||||
* | More Python API enhancements. | Jack Lloyd | 2019-04-27 | 1 | -12/+196 |
| | | | | Deprecate various redundant FFI functions | ||||
* | Minor Python wrapper tweaks | Jack Lloyd | 2019-04-22 | 1 | -6/+21 |
| | |||||
* | More MPI functions | Jack Lloyd | 2019-04-21 | 1 | -0/+26 |
| | |||||
* | Add raw block cipher interface for Python | Jack Lloyd | 2019-04-21 | 1 | -1/+65 |
| | |||||
* | Lint fixes | Jack Lloyd | 2019-04-21 | 1 | -3/+3 |
| | |||||
* | Support copying hash function objects | Jack Lloyd | 2019-04-19 | 1 | -6/+22 |
| | |||||
* | Remove duplicated decl | Jack Lloyd | 2019-04-19 | 1 | -3/+0 |
| | | | | Same function as const_time_compare | ||||
* | Add support for NIST key wrap in Python | Jack Lloyd | 2019-04-19 | 1 | -0/+12 |
| | |||||
* | Pylint fixes | Jack Lloyd | 2019-04-19 | 1 | -30/+30 |
| | |||||
* | Use script to generate Python FFI decls | Jack Lloyd | 2019-04-19 | 1 | -138/+225 |
| | | | | Remove unimplemented declaration botan_x509_cert_gen_selfsigned | ||||
* | Use c_char_p instead of POINTER(c_char) | Jack Lloyd | 2019-04-19 | 1 | -62/+62 |
| | |||||
* | Clean up some things in Python wrapper | Jack Lloyd | 2019-04-19 | 1 | -403/+404 |
| | |||||
* | Simplify declaration of ffi functions | Jack Lloyd | 2019-04-18 | 1 | -382/+168 |
| | | | | And fix a Python3 issue | ||||
* | Support loading keys in Python | Jack Lloyd | 2019-04-18 | 1 | -22/+49 |
| | | | | Which was missing for whatever bad reason. GH #1900 | ||||
* | Add missing export functions | Jack Lloyd | 2019-04-18 | 1 | -11/+18 |
| | | | | Fixes #1899 | ||||
* | Fix pylint3 warning [ci skip] | Jack Lloyd | 2018-12-10 | 1 | -1/+1 |
| | |||||
* | Lint fixes | Jack Lloyd | 2018-08-21 | 1 | -4/+4 |
| | |||||
* | Add HOTP to Python | Jack Lloyd | 2018-08-21 | 1 | -1/+43 |
| | |||||
* | Add MPI and FPE to Python wrapper | Jack Lloyd | 2018-08-13 | 1 | -143/+527 |
| | | | | | Also make all member variables private (__ prefix), and rename classes to match Python conventions | ||||
* | Fix Python2 problem | Jack Lloyd | 2018-08-11 | 1 | -1/+7 |
| | |||||
* | In Python expose new name getters | Jack Lloyd | 2018-08-11 | 1 | -0/+24 |
| | |||||
* | Convert Python tests to actual unit tests | Jack Lloyd | 2018-08-11 | 1 | -2/+2 |
| | |||||
* | Add scrypt to Python | Jack Lloyd | 2018-08-11 | 1 | -4/+23 |
| | |||||
* | Better error checking in Python wrapper | Jack Lloyd | 2018-08-11 | 1 | -212/+378 |
| | | | | | | Adopt APIs added in 2.8 Expose botan_error_description which was added in 2.5 but not exported! | ||||
* | Fix warning in new pylint | Jack Lloyd | 2018-03-17 | 1 | -9/+9 |
| | | | | | It doesn't like slicing using a ctypes integer as index: Slice index is not an int, None, or instance with __index__ | ||||
* | Fix incorrect return value check | Jack Lloyd | 2018-03-15 | 1 | -1/+1 |
| | |||||
* | In Python module support loading via libbotan-2.so.X soname | Jack Lloyd | 2018-03-15 | 1 | -7/+22 |
| | | | | | | Needed for distros that ship the main library symlink in the dev package. GH #1497 | ||||
* | Split Python tests out of botan2.py | Jack Lloyd | 2018-03-10 | 1 | -255/+3 |
| | | | | No reason to ship these to the end user | ||||
* | Latest pylint doesn't like these asserts | Jack Lloyd | 2017-12-17 | 1 | -2/+2 |
| | |||||
* | Fix Python tests | Jack Lloyd | 2017-11-16 | 1 | -1/+1 |
| | |||||
* | Change http://botan.randombit.net to https URIs | Jack Lloyd | 2017-09-01 | 1 | -1/+1 |
| | | | | | | Not a big deal since the site already uses HSTS, but whatever. [ci skip] | ||||
* | Don't use len() to verify emptyness | Simon Warta | 2017-05-04 | 1 | -1/+4 |
| | |||||
* | Remove comment: FIXME without further description | Simon Warta | 2017-05-04 | 1 | -1/+1 |
| | |||||
* | Work around name conflict of symbol "rng" | Simon Warta | 2017-05-04 | 1 | -13/+14 |
| |