summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Started explicitly mentioning PKCS#1 v1.5 or v2.1pkcs1_v21Sybren A. St?vel2014-03-021-6/+14
|
* Merged in ↵Sybren St?vel2014-02-281-0/+1
|\ | | | | | | | | | | brettsky/python-rsa/brettsky/list-python-3-support-in-setuppy-1393605517644 (pull request #8) List Python 3 support in setup.py.
| * List Python 3 support in setup.py.Brett Cannon2014-02-281-0/+1
|/
* Added signature for changeset 19cd5cedbd46Sybren A. St?vel2014-02-221-0/+1
|
* Added tag version-3.1.4 for changeset f2c152922e0bSybren A. St?vel2014-02-220-0/+0
|
* Bumped version to 3.1.4version-3.1.4Sybren A. St?vel2014-02-221-2/+2
|
* Added a bit about PKCS#8Sybren A. St?vel2014-02-221-0/+11
|
* Fixed typo in pyrsa-verify help messageSybren A. St?vel2014-02-221-1/+1
|
* Fixed compatibilty of pyrsa-priv2pub with Python 3Sybren A. St?vel2014-02-221-13/+15
|
* Added tag version-3.1.3 for changeset 8f50f506b4a2Sybren A. St?vel2014-02-020-0/+0
|
* Bumped version to 3.1.3version-3.1.3Sybren A. St?vel2014-02-021-2/+2
|
* Dropped support for Python 2.5; Tox doesn't support it any more and it's way ↵Sybren A. St?vel2014-02-021-9/+1
| | | | too old anyway.
* Added tag version-3.1.2 for changeset 3b3ae1c41c67Sybren A. St?vel2013-09-150-0/+0
|
* Bumped version to 3.1.2version-3.1.2Sybren A. St?vel2013-09-151-2/+2
|
* Added Python 3.3 to tox.iniSybren A. St?vel2013-09-151-1/+9
|
* Removed dependency on distribute (fixes #17)Sybren A. St?vel2013-09-152-559/+0
|
* Use distribute_setup.py from distribute 0.6.44, which has support for ↵Jason R. Coombs2013-05-281-23/+93
| | | | setuptools 0.7 environments. Fixes #15.
* rsa.pkcs1.verify() should return True when successfulTim Heckman2012-10-174-3/+6
| | | | | | | | | | | | | | | - when verification passes verify() will return True, instead of None. If verification fails the function will still raise a rsa.pkcs1.VerificationError for legacy purposes. - update the docs to note that the verify() function returns True when successful - write unit tests to verify this new behavior This commit passes all build tests: Ran 44 tests in 1.217s OK
* Explicitly cast ASN.1 integer type to Python intSybren A. St?vel2012-10-121-1/+1
|
* Added support for loading public keys from OpenSSLSybren A. St?vel2012-10-113-28/+97
|
* Added signature for changeset 874bb280b3c3Sybren A. St?vel2012-06-181-0/+1
|
* Added tag version-3.1.1 for changeset d4457be50d60Sybren A. St?vel2012-06-180-0/+0
|
* Fixed some more Py32 incompatibilitiesversion-3.1.1Sybren A. St?vel2012-06-182-5/+7
|
* Updated tox dependenciesSybren A. St?vel2012-06-181-5/+6
|
* Updated installation instructionsSybren A. St?vel2012-06-184-10/+30
|
* Require pyasn1 0.1.3Sybren A. St?vel2012-06-181-1/+1
|
* Fixed CLI functions for Python 3.xSybren A. St?vel2012-06-181-21/+21
|
* Updated changelogSybren A. St?vel2012-06-181-0/+1
|
* Tweaked unittests for Python 3.xSybren A. St?vel2012-06-183-13/+1
|
* Added version 3.1.1 to changelogSybren A. St?vel2012-06-182-1/+6
|
* Fixed doctestsSybren A. St?vel2012-06-182-2/+2
|
* Added tag version-3.1 for changeset 4caf721a5fb5Sybren A. St?vel2012-06-170-0/+0
|
* Added Tox to dev requirementsversion-3.1Sybren A. St?vel2012-06-171-0/+1
|
* Updated changelogSybren A. St?vel2012-06-171-1/+9
|
* 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
|
* Fixed unittesting with toxSybren A. St?vel2011-11-061-1/+1
|
* We require a newer version of distributeSybren A. St?vel2011-11-061-1/+1
|
* Reverts docstring quoting syntax.Yesudeep Mangalapilly2011-08-2419-197/+200
|
* 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
|
* pypy 1.6 (nightly) is now faster than python2.7. Re-enables tests.Yesudeep Mangalapilly2011-08-241-1/+2
| | | | | * You can obtain the latest pypy nightly from: http://buildbot.pypy.org/nightly/trunk/
* Reorganizes tests.Yesudeep Mangalapilly2011-08-171-4/+3
|
* Fixes a silly error.Yesudeep Mangalapilly2011-08-173-9/+18
|
* Increase test verbosity.Yesudeep Mangalapilly2011-08-163-1/+3
|
* Moves incompatible doctests to unit test modules.Yesudeep Mangalapilly2011-08-166-27/+33
|
* Adds common includes and tests.Yesudeep Mangalapilly2011-08-162-0/+8
|