summaryrefslogtreecommitdiff
path: root/rsa
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Added encrypting and decrypting of large filesSybren A. St?vel2011-07-311-3/+49
* Added yield_fixedblockSybren A. St?vel2011-07-311-0/+19
* Removed obsolete codeSybren A. St?vel2011-07-311-126/+1
* fixed doctestsSybren A. St?vel2011-07-311-6/+6
* More documentationSybren A. St?vel2011-07-312-61/+70
* Using int() rather than long()Sybren A. St?vel2011-07-302-10/+10
* Added reading of varblocksSybren A. St?vel2011-07-301-1/+44
* Added start of blocks module (varint impl)Sybren A. St?vel2011-07-301-0/+91
* Added version 2.0 code as rsa/_version200.pySybren A. St?vel2011-07-301-0/+532
* Bumped version from 2.1-beta0 to 3.0-beta0Sybren A. St?vel2011-07-301-1/+1
* Removed insecure code from rsa/__init__.pySybren A. St?vel2011-07-301-125/+4
* oopsSybren A. St?vel2011-07-301-2/+2
* Sligthly better ignoring of fields in PEMSybren A. St?vel2011-07-301-2/+6
* Ignore fields in PEM-encoded filesSybren A. St?vel2011-07-301-0/+4
* Using key.X rather than key['X']Sybren A. St?vel2011-07-301-9/+9
* Better type checking in core, casting ASN-ints to Python intSybren A. St?vel2011-07-302-7/+22
* Added pyrsa-priv2pub CLI toolSybren A. St?vel2011-07-241-0/+77
* Specify format (PEM/DER) in capitalsSybren A. St?vel2011-07-241-8/+8
* Added simpler save/load functionsSybren A. St?vel2011-07-241-6/+50
* Added saving and loading public keys in PKCS#1 format (PEM+DER)Sybren A. St?vel2011-07-241-1/+37
* Added saving and loading public keys in DER formatSybren A. St?vel2011-07-241-2/+55
* Merged keygen-accurate branch to default branchSybren A. St?vel2011-07-249-0/+143
|\
| * Added Apache 2 license notice to source filesSybren A. St?vel2011-07-239-0/+143
* | Introduced "accurate mode" for key generation, cleaned up codeSybren A. St?vel2011-07-241-31/+51
* | More tweaks to random number generationSybren A. St?vel2011-07-242-15/+60