aboutsummaryrefslogtreecommitdiffstats
path: root/src/python/botan2.py
Commit message (Collapse)AuthorAgeFilesLines
* Latest pylint doesn't like these assertsJack Lloyd2017-12-171-2/+2
|
* Fix Python testsJack Lloyd2017-11-161-1/+1
|
* 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]
* Don't use len() to verify emptynessSimon Warta2017-05-041-1/+4
|
* Remove comment: FIXME without further descriptionSimon Warta2017-05-041-1/+1
|
* Work around name conflict of symbol "rng"Simon Warta2017-05-041-13/+14
|
* Add base exception type: BotanExceptionSimon Warta2017-05-041-22/+30
|
* Fix various pylint warningsSimon Warta2017-05-041-8/+10
|
* Avoid redefining build-in name "hash"Simon Warta2017-05-041-3/+3
| | | | | this breaks applications using a parameter labels, e.g. pubkey.fingerprint(hash='SHA-512')
* Silence invalid name warning for module "botan"Simon Warta2017-05-041-2/+2
|
* Silence pylint invalid class name warningsSimon Warta2017-05-041-12/+12
|
* Use comments to organize code sectionsSimon Warta2017-05-041-35/+40
|
* Remove trailing whitespaceSimon Warta2017-05-041-1/+1
|
* Break long linesSimon Warta2017-05-041-14/+29
|
* Expose BigInt API subset to C APIJack Lloyd2017-03-281-10/+5
| | | | Also adds RSA key constructors using BN
* Rename Python module to botan2Jack Lloyd2017-01-241-0/+938
Makes it easier to support side by side installs. And for the programmer it is easier if `import botan2` can always be used to refer to a specific version. GH #847