summaryrefslogtreecommitdiff
path: root/tests
Commit message (Expand)AuthorAgeFilesLines
* modified: Fixed a bug in rsa/core.py where the message should not be equal...Shengkai Sun2023-04-231-0/+28
* Drop support for Python 3.6Daniel Ziegenberg2022-12-061-1/+0
* Fix incorrect ordering of public and private keys in test casemyheroyuki2022-07-201-3/+3
* Cleanup: remove trailing space from docstringSybren A. Stüvel2022-03-131-1/+1
* Fix #133: Remove rsa/_compat.pySybren A. Stüvel2022-03-133-91/+1
* Reformatting with BlackSybren A. Stüvel2021-03-2911-242/+286
* Fix hashlib mypy types for Python 3.xSaif Hakim2021-03-241-2/+6
* Clean up stdout when using unittest test runnerSaif Hakim2021-02-244-9/+9
* Fix #173: unpickling doesn't restore full objectBu Sun Kim2021-02-241-0/+5
* Fix threading issue introduced in 4.7Sybren A. Stüvel2021-02-151-8/+7
* Fix #162: Blinding uses slow algorithmSybren A. Stüvel2020-11-151-4/+13
* Fix #164: Add padding length check as described by PKCS#1 v1.5Sybren A. Stüvel2020-11-151-0/+33
* Limit SHA3 support to Python 3.6+Sybren A. Stüvel2020-06-111-0/+7
* Compatibility with newer MyPy versionsSybren A. Stüvel2020-06-111-1/+1
* Fix CVE-2020-13757: detect cyphertext modifications by prepending zero bytesSybren A. Stüvel2020-06-031-0/+44
* Drop character encoding markers for Python 2.xAndrey Semakin2020-06-0310-20/+0
* Add support for SHA3 hashingSybren A. Stüvel2019-08-041-1/+3
* Added mypy for static type checkingSybren A. Stüvel2019-08-042-22/+45
* Removed compatibility code for Python 2.7 and 3.4Sybren A. Stüvel2019-08-047-47/+17
* Fix BytesWarning in testsJon Dufresne2018-10-231-3/+3
* Changed unittest to cover the new SHA-224 hash methodSybren A. Stüvel2018-02-051-2/+2
* PKCS#1 2.0: Implementation of MGF1 (#89)Michael Manganiello2017-06-101-0/+83
* Support signing a pre-calculated hash (#87)Justin Simon2017-05-071-0/+21
* Feature request #78: Expose function to find the hash method of a signatureSybren A. Stüvel2017-04-101-1/+9
* Don't print in unit testsSybren A. Stüvel2017-04-101-3/+0
* Implementation of bitwise XOR function for bytes object (#72)Michael Manganiello2017-01-161-1/+46
* Create PY2 constant to simplify compatibility decisions (#82)Michael Manganiello2017-01-152-15/+12
* Remove custom PrivateKey exponents/coefficient (#71)Michael Manganiello2017-01-052-1/+47
* Drop byte_literal in favour of b''adamantike2016-05-087-46/+42
* xrange compatibility optimization for Python 2 (#69)Michael Manganiello2016-05-082-1/+2
* Use 'assertEqual' instead of deprecated alias (#73)Michael Manganiello2016-05-081-10/+10
* Fix edge case for byte() call at pkcs1 test (#64)Michael Manganiello2016-04-231-1/+2
* Unit test for Mersenne primesadamantike2016-04-231-0/+19
* Trivial fix on primality testingadamantike2016-04-161-3/+3
* Set Miller-Rabin rounds based on bitsizeadamantike2016-04-151-0/+14
* Implemented __hash__ function for key objects.Sybren A. Stüvel2016-03-291-0/+11
* No longer require string operations to find bit lengths.Sybren A. Stüvel2016-03-291-7/+16
* More tests with hard-coded 'random' values.Sybren A. Stüvel2016-03-292-1/+35
* Added unittest for rsa.key.gen_keysSybren A. Stüvel2016-03-291-0/+17
* Added unittest for rsa.common.inverseSybren A. Stüvel2016-03-291-1/+11
* Removed monkey-patch of unittestSybren A. Stüvel2016-03-291-13/+0
* Added unit test for rsa.util.private_to_public()Sybren A. Stüvel2016-03-171-0/+19
* More CLI tests & clearer bytes stuffSybren A. Stüvel2016-03-175-12/+178
* Attempt at unit-testing CLI commandsSybren A. Stüvel2016-03-171-0/+149
* Ensuring that PEM output is always in bytes.Sybren A. Stüvel2016-03-171-1/+15
* Removed deprecated functionality.Sybren A. Stüvel2016-03-172-161/+0
* Allow loading PEM from strings (not just bytes), closes issue #49Sybren A. Stüvel2016-03-171-2/+49
* Reintroduced test for rsa.prime.is_primeSybren A. Stüvel2016-03-171-0/+23
* Remove Solovay-Strassen implementationadamantike2016-03-171-193/+0
* Add Jacobi test for table of valuesadamantike2016-02-051-0/+214