summaryrefslogtreecommitdiff
path: root/rsa
Commit message (Expand)AuthorAgeFilesLines
* Fixed some more Py32 incompatibilitiesversion-3.1.1Sybren A. St?vel2012-06-182-5/+7
* Fixed CLI functions for Python 3.xSybren A. St?vel2012-06-181-21/+21
* Added version 3.1.1 to changelogSybren A. St?vel2012-06-181-1/+1
* Fixed doctestsSybren A. St?vel2012-06-182-2/+2
* Bumped version to 3.1Sybren A. St?vel2012-06-171-3/+3
* Fixes formatting indentation issue to revert to PEP8 style.Yesudeep Mangalapilly2012-03-021-77/+76
* Fix buffer bytestring issue with Python 3.2Yesudeep Mangalapilly2012-03-021-78/+83
* Reverts docstring quoting syntax.Yesudeep Mangalapilly2011-08-2413-167/+170
* 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
* Adds the doctests for bit_size back into the function docstrings.Yesudeep Mangalapilly2011-08-241-0/+23
* Fixes a silly error.Yesudeep Mangalapilly2011-08-171-6/+6
* Moves incompatible doctests to unit test modules.Yesudeep Mangalapilly2011-08-163-26/+6
* Adds common includes and tests.Yesudeep Mangalapilly2011-08-161-0/+5
* 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-1614-171/+133
* Much cleaner implementation of int2bytes. No loss in speed.Yesudeep Mangalapilly2011-08-142-58/+71
* 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
* Adds a much faster bit_size implementation causing an overall speed up.Yesudeep Mangalapilly2011-08-121-1/+43
* Completes machine-aligned int2bytes implementation.Yesudeep Mangalapilly2011-08-121-0/+9
* Adds verification tests for int2bytes and bytes2intYesudeep Mangalapilly2011-08-122-48/+130
* 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
* Re-implements byte_size using divmod avoiding floating-point calculations.Yesudeep Mangalapilly2011-08-111-2/+7
* Porting to Python 3 complete. All tests except pyasn1 stuff pass.Yesudeep Mangalapilly2011-08-1110-49/+65
* Tests are now functional (only running without syntax errors) on Python 3 too.Yesudeep Mangalapilly2011-08-113-11/+11
* Compatibility wrapper module to make rsa work with various versions of Python.Yesudeep Mangalapilly2011-08-111-0/+99
* Removed superfluous checkSybren A. St?vel2011-08-101-4/+0
* Added basic Chinese Remainder theorem implementation, not yet used.Sybren A. St?vel2011-08-102-30/+79
* Added parallel.py module and ability to use multiprocessing when generating keysSybren A. St?vel2011-08-103-22/+154
* Bumped version to 3.1-beta0Sybren A. St?vel2011-08-101-1/+1
* Bumped version to 3.0.1version-3.0.1Sybren A. St?vel2011-08-071-2/+2
* Removed unused import of abc module, updated changelogSybren A. St?vel2011-08-071-1/+0
* Bumped version to 3.0Sybren A. St?vel2011-08-051-2/+2
* Fixed doctest, python 2.6 on cygwinSybren A. St?vel2011-08-031-1/+1
* More documentation about key size and OpenSSL compatibilitySybren A. St?vel2011-08-032-5/+5
* more documentationSybren A. St?vel2011-08-031-2/+30
* More consistent options for pyrsa-keygenSybren A. St?vel2011-08-031-4/+4
* Added pyrsa-encrypt/decrypt-bigfile commandsSybren A. St?vel2011-08-011-0/+90
* Added rsa.bigfile.__all__Sybren A. St?vel2011-08-011-0/+2
* Added verify and sign commands, fixed some bugs in other commandsSybren A. St?vel2011-07-312-20/+78
* Added encrypt and decrypt CLI commandsSybren A. St?vel2011-07-311-1/+148
* Slightly more docSybren A. St?vel2011-07-311-0/+4
* Added pyrsa-keygen CLI scriptSybren A. St?vel2011-07-311-0/+79
* Made hashing efficient for large filesSybren A. St?vel2011-07-313-57/+110