summaryrefslogtreecommitdiff
path: root/rsa/transform.py
Commit message (Expand)AuthorAgeFilesLines
* Reformatting with BlackSybren A. Stüvel2021-03-291-4/+4
* Drop character encoding markers for Python 2.xAndrey Semakin2020-06-031-2/+0
* Added flake8 as development dependency and fixed reported issuesSybren A. Stüvel2019-08-041-1/+1
* Removed compatibility code for Python 2.7 and 3.4Sybren A. Stüvel2019-08-041-153/+12
* Moved `get_word_alignment()` from `_compat.py` to `machine_size.py`Sybren A. Stüvel2018-09-161-3/+3
* Drop byte_literal in favour of b''adamantike2016-05-081-11/+11
* xrange compatibility optimization for Python 2 (#69)Michael Manganiello2016-05-081-0/+1
* Drop psyco usageSybren A. Stüvel2016-04-231-10/+0
* Updated documentation, mostly http -> https changesSybren A. Stüvel2016-02-051-1/+1
* Updated doctests to Python 3.5 and automatically running with Tox.Sybren A. Stüvel2016-01-221-3/+3
* Using r""" for some docstringsSybren A. Stüvel2016-01-221-2/+2
* Big refactor to become more PEP8 compliant.Sybren A. Stüvel2016-01-221-15/+19
* Fixed doctestsSybren A. Stüvel2012-06-181-1/+1
* Reverts docstring quoting syntax.Yesudeep Mangalapilly2011-08-241-10/+10
* Adds back older doctests for _int2bytes for compliance.Yesudeep Mangalapilly2011-08-241-0/+17
* Allow block_size=None in _int2bytes.Yesudeep Mangalapilly2011-08-241-4/+5
* Allow fill_size=None, chunk_size=None in int2bytes.Yesudeep Mangalapilly2011-08-241-4/+4
* Fixes bad zero-prefix padding bug in older _int2bytes to pass all tests.Yesudeep Mangalapilly2011-08-161-8/+10
* Parellelized testing. Caught a lot of bugs.Yesudeep Mangalapilly2011-08-161-18/+2
* Much cleaner implementation of int2bytes. No loss in speed.Yesudeep Mangalapilly2011-08-141-56/+69
* Fixes doctest.Yesudeep Mangalapilly2011-08-131-1/+1
* Measure twice, cut once.Yesudeep Mangalapilly2011-08-131-3/+8
* Finally tracked down the bug to incorrect padding. Now all tests should passYesudeep Mangalapilly2011-08-131-14/+3
* Completes machine-aligned int2bytes implementation.Yesudeep Mangalapilly2011-08-121-0/+9
* Adds verification tests for int2bytes and bytes2intYesudeep Mangalapilly2011-08-121-48/+69
* Adds speed tests for int2bytes and old_int2bytes.Yesudeep Mangalapilly2011-08-111-6/+65
* Even better. Discard prefix zero bytes if block size is not specified.Yesudeep Mangalapilly2011-08-111-22/+29
* Reduces more calculation in int2bytes.Yesudeep Mangalapilly2011-08-111-10/+17
* Adds faster ``struct.pack``-based int2bytes implementation.Yesudeep Mangalapilly2011-08-111-11/+12
* Porting to Python 3 complete. All tests except pyasn1 stuff pass.Yesudeep Mangalapilly2011-08-111-10/+12
* Removed obsolete codeSybren A. Stüvel2011-07-311-126/+1
* Using int() rather than long()Sybren A. Stüvel2011-07-301-4/+4
* Added Apache 2 license notice to source filesSybren A. Stüvel2011-07-231-0/+16
* Bytes2int transformation more efficient using binascii.hexlifySybren A. Stüvel2011-07-231-17/+7
* Fixed doctestSybren A. Stüvel2011-07-191-2/+0
* Fixed file permissionsSybren A. Stüvel2011-07-191-0/+0
* Use new-style integer divisionSybren A. Stüvel2011-07-141-1/+1
* Added PKCS#1 signatures and verification of signaturesSybren A. Stüvel2011-07-101-0/+3
* Lot of refactorings:Sybren A. Stüvel2011-07-101-22/+4
* Reinstated some of the backed out changeset 812d745b6bef:Sybren A. Stüvel2011-07-101-1/+40
* Backed out changeset 812d745b6befSybren A. Stüvel2011-07-101-34/+98
* Removed some fluff, rewritten some stuff, broken the lotSybren A. Stüvel2011-07-101-98/+34
* Added support for padding blocksSybren A. Stüvel2011-07-091-10/+50
* Added block padding to be able to work with leading zeroes, breaks all kind o...Sybren A. Stüvel2011-06-201-1/+3
* Fixed/added doctestsSybren A. Stüvel2011-06-201-3/+9
* Slightly better readable codeSybren A. Stüvel2011-06-201-2/+2
* Split module into several filesSybren A. Stüvel2011-06-191-0/+152