summaryrefslogtreecommitdiff
path: root/rsa/pem.py
Commit message (Collapse)AuthorAgeFilesLines
* Add more type hintsAndrey Semakin2020-06-031-3/+3
|
* Drop character encoding markers for Python 2.xAndrey Semakin2020-06-031-2/+0
|
* Configured flask8 to use max_complexity=10Sybren A. Stüvel2019-08-041-23/+29
| | | | Also reorganised the only function that had a higher complexity.
* Added type annotations + some fixes to get them correctSybren A. Stüvel2019-08-041-3/+7
| | | | | | One functional change: `CryptoOperation.read_infile()` now reads bytes from `sys.stdin` instead of text. This is necessary to be consistent with the rest of the code, which all deals with bytes.
* Removed compatibility code for Python 2.7 and 3.4Sybren A. Stüvel2019-08-041-4/+2
|
* Drop byte_literal in favour of b''adamantike2016-05-081-8/+8
|
* xrange compatibility optimization for Python 2 (#69)Michael Manganiello2016-05-081-1/+2
|
* Ensuring that PEM output is always in bytes.Sybren A. Stüvel2016-03-171-6/+6
| | | | | This may break some applications. However, it does make the RSA library easier to use on different Python versions.
* Allow loading PEM from strings (not just bytes), closes issue #49Sybren A. Stüvel2016-03-171-0/+4
|
* Updated documentation, mostly http -> https changesSybren A. Stüvel2016-02-051-1/+1
| | | | | | Also: - changed http to https in the code - changed header underlines in the documentation to match the header length
* Fixed some docstrings to use Sphinx-compatible notationSybren A. Stüvel2016-01-221-6/+6
|
* Big refactor to become more PEP8 compliant.Sybren A. Stüvel2016-01-221-9/+10
| | | | | Mostly focused on docstrings (''' → """), indentation, empty lines, and superfluous parenthesis.
* No longer using obsolete base64 interface, fixes bug #30Sybren A. Stüvel2016-01-211-2/+2
|
* Reverts docstring quoting syntax.Yesudeep Mangalapilly2011-08-241-7/+7
|
* Moves incompatible doctests to unit test modules.Yesudeep Mangalapilly2011-08-161-5/+2
|
* Parellelized testing. Caught a lot of bugs.Yesudeep Mangalapilly2011-08-161-7/+7
|
* Porting to Python 3 complete. All tests except pyasn1 stuff pass.Yesudeep Mangalapilly2011-08-111-8/+13
|
* oopsSybren A. Stüvel2011-07-301-2/+2
|
* Sligthly better ignoring of fields in PEMSybren A. Stüvel2011-07-301-2/+6
|
* Ignore fields in PEM-encoded filesSybren A. Stüvel2011-07-301-0/+4
|
* Added Apache 2 license notice to source filesSybren A. Stüvel2011-07-231-0/+16
|
* Fixed bug in PEM writerSybren A. Stüvel2011-07-221-1/+1
|
* Simpler PEM marker codeSybren A. Stüvel2011-07-211-17/+23
|
* Added support for saving private keys in DER and PEM formatSybren A. Stüvel2011-07-201-0/+28
|
* Added loading of DER and PEM encoded private keysSybren A. Stüvel2011-07-191-0/+60