summaryrefslogtreecommitdiff
path: root/rsa
Commit message (Expand)AuthorAgeFilesLines
* xrange compatibility optimization for Python 2 (#69)Michael Manganiello2016-05-087-3/+15
* Remove sys.maxint fallback usageadamantike2016-04-231-5/+1
* Drop psyco usageSybren A. Stüvel2016-04-231-10/+0
* Trivial fix on primality testingadamantike2016-04-161-1/+1
* Set Miller-Rabin rounds based on bitsizeadamantike2016-04-151-8/+32
* Implemented __hash__ function for key objects.Sybren A. Stüvel2016-03-291-0/+6
* No longer require string operations to find bit lengths.Sybren A. Stüvel2016-03-291-37/+4
* Introduced NotRelativePrimeError exception.Sybren A. Stüvel2016-03-292-4/+15
* Added unittest for rsa.common.inverseSybren A. Stüvel2016-03-291-1/+1
* PEP8 formattingSybren A. Stüvel2016-03-291-9/+9
* Merge branch 'version-3.4-fix-changelog'Sybren A. Stüvel2016-03-291-1/+1
|\
| * Bumped version to 3.4.2Sybren A. Stüvel2016-03-291-2/+2
* | Merge branch 'version-3.4-repackaging'Sybren A. Stüvel2016-03-261-1/+1
|\ \ | |/
| * Bumped version to 3.4.1Sybren A. Stüvel2016-03-261-2/+2
* | Using set instead of list, it's faster.Sybren A. Stüvel2016-03-171-1/+1
* | Removed a doctest, it's covered by a unit test anyway.Sybren A. Stüvel2016-03-171-2/+0
* | More CLI tests & clearer bytes stuffSybren A. Stüvel2016-03-172-12/+67
* | Ensuring that PEM output is always in bytes.Sybren A. Stüvel2016-03-172-6/+10
* | Removed deprecated functionality.Sybren A. Stüvel2016-03-176-1369/+24
* | Bumped version to 4.0-alphaSybren A. Stüvel2016-03-171-1/+1
|/
* Bumped to version 3.4Sybren A. Stüvel2016-03-171-2/+2
* Allow loading PEM from strings (not just bytes), closes issue #49Sybren A. Stüvel2016-03-171-0/+4
* Remove list comprehension used for method executionadamantike2016-03-171-2/+6
* Prevent possible infinite loops.Sybren A. Stüvel2016-03-171-3/+8
* Remove Solovay-Strassen implementationadamantike2016-03-171-63/+0
* Use Miller-Rabin primality testingadamantike2016-03-171-1/+70
* Use specific function for odd integer generationadamantike2016-03-173-8/+15
* Correct doctest returns for 'are_relatively_prime'adamantike2016-02-051-2/+2
* Remove unneeded conditional on Jacobi functionadamantike2016-02-051-2/+0
* Bumped version to 3.4-beta1Sybren A. Stüvel2016-02-051-1/+1
* Updated documentation, mostly http -> https changesSybren A. Stüvel2016-02-0518-19/+19
* Fixed PEP8 style issuesSybren A. Stüvel2016-01-273-11/+15
* Fix #18: Add an 'exponent' argument to key.newkeys()Sybren A. Stüvel2016-01-271-15/+41
* Removed some compatibility code for Python 2.6Sybren A. Stüvel2016-01-271-8/+1
* Removed unused importSybren A. Stüvel2016-01-271-1/+1
* Simplified test structure a bit, so we no longer need to set PYTHONPATHSybren A. Stüvel2016-01-271-2/+0
* Removed code duplicationSybren A. Stüvel2016-01-271-11/+13
* Fixed bug where PrivateKey.exp2 wasn't correctly processed in the constructor.Sybren A. Stüvel2016-01-271-5/+5
* Deprecated old modules, and slated them for removal in 4.0Sybren A. Stüvel2016-01-272-8/+13
* Perform a late import of rsa.varblock to prevent DeprecationWarningsSybren A. Stüvel2016-01-251-1/+4
* Fix #12 Allow pickling of keys.Sybren A. Stüvel2016-01-221-0/+24
* Removed doctest for blinding, as it is not suitable as an example for end users.Sybren A. Stüvel2016-01-221-8/+0
* Another pass at blinding.Sybren A. Stüvel2016-01-222-19/+20
* Use random number when blinding, and also blind when verifying signatures.Sybren A. Stüvel2016-01-222-45/+75
* Fixed some docstrings to use Sphinx-compatible notationSybren A. Stüvel2016-01-223-25/+26
* Fix #13: Deprecated the VARBLOCK format and rsa.bigfile moduleSybren A. Stüvel2016-01-222-0/+71
* Fix #19: Implemented blinding when decrypting.Sybren A. Stüvel2016-01-222-2/+44
* Removed obsolete remark from docstring, fixes #14Sybren A. Stüvel2016-01-221-3/+0
* Updated doctests to Python 3.5 and automatically running with Tox.Sybren A. Stüvel2016-01-224-76/+18
* Fix #30, removed use of deprecated `base64.decodestring` from docstringsSybren A. Stüvel2016-01-221-2/+2