summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Add support for toxMarc Abramowitz2014-06-222-0/+13
* Fix tobytes() broken by previous commit.Dwayne Litzenberger2014-06-221-16/+9
* Get rid of catch-all exceptions. LP#1178485.Richard Mitchell2014-06-222-3/+3
* Upgrade libtomcrypt 1.16 -> 1.17 (LP#1264130)Dwayne Litzenberger2014-06-2212-311/+375
|\
| * PyCrypto customizations: Declare things static so that we don't leak symbolsDwayne Litzenberger2014-06-222-28/+28
| * Pristine files from libtomcrypt-1.17Dwayne Litzenberger2014-06-2214-0/+6010
* DES3: Move "Two-key 3DES" support into DES.c instead of customizing tomcrypt_...Dwayne Litzenberger2014-06-222-14/+20
* Clearer wording on Linux installation dependencies. One doesn't just require ...Richard Mitchell2014-06-221-7/+6
* Workaround missing bit_AES definesSebastian Ramacher2014-06-221-0/+13
* Fix compilation with clang-3.3Sebastian Ramacher2014-06-221-8/+9
* Remove 16-year-old .bzrignore fileDwayne Litzenberger2014-06-221-4/+0
* Bugs are now tracked on GitHubDwayne Litzenberger2014-06-221-2/+2
* Update .travis.yml to test against most Python versions we support (Linux only)Dwayne Litzenberger2014-06-221-9/+53
* Fix tests when running under "python -OO" (PYTHONOPTIMIZE set to 1 or 2)Dwayne Litzenberger2014-06-224-5/+24
* Fix BytesWarning when running with "python3 -bb"Dwayne Litzenberger2014-06-221-1/+1
* Travis CI config file.Lucas Garron2014-06-221-0/+11
* Merge branch 'fix-aesni-aligned-malloc'Dwayne Litzenberger2014-02-221-1/+5
|\
| * AESNI: Fix order of alignment & size args in _aligned_mallocDwayne Litzenberger2014-02-221-1/+5
* | Fix tools/create-pythons.sh building Python on Linux 3.x or later (sys.platfo...Dwayne Litzenberger2014-02-221-0/+39
* | Oops. Actually build Python 3.4.0rc1 in tools/create-pythons.shDwayne Litzenberger2014-02-221-1/+2
* | Add Python 3.4.0rc1 to tools/create-pythons.shDwayne Litzenberger2014-02-221-1/+4
* | Regenerate autoconf filesDwayne Litzenberger2014-02-223-5/+524
|/
* Clean up AESNI aligned malloc() wrappersDwayne Litzenberger2014-02-221-33/+22
* Merge pull request #62 (Fixes AESNI alignment bug)Dwayne Litzenberger2014-02-229-17/+108
|\
| * Prefer C11's aligned_alloc if it is availableSebastian Ramacher2014-02-221-4/+4
| * Check return value of posix_memalignSebastian Ramacher2014-02-221-1/+3
| * Add wrapper for freeSebastian Ramacher2014-02-221-6/+19
| * Add a wrapper for posix_memalign and friendsSebastian Ramacher2013-10-281-17/+22
| * Make sure that ek and dk are aligned at 16 byte boundariesSebastian Ramacher2013-10-283-4/+49
| * Add block_finalize to clean up block_state from ALGdeallocSebastian Ramacher2013-10-287-0/+26
| * Be more consistent with spaces and tabsSebastian Ramacher2013-10-281-13/+13
* | Fix handle_fastmath_import_error (broken due to incorrect path in the previou...Dwayne Litzenberger2014-02-221-10/+11
* | Refactor 3 places handling fastmath ImportErrorMarc Abramowitz2014-02-224-30/+18
* | Use different method for getting ext_suffixMarc Abramowitz2014-02-223-3/+6
* | Fix typo in error stringDwayne Litzenberger2014-02-221-1/+1
* | Fixed sentence in CCM exampleLegrandin2014-02-211-2/+3
* | Better example (with nonce) for Counter objectLegrandin2014-02-211-4/+6
* | Fix exception string for incorrect key length (DES)Legrandin2014-02-211-0/+4
* | Throw exception when IV is used with ECB or CTRLegrandin2014-02-212-8/+34
* | Sign the hash in the the PKCS1_PSS doctest, not the keyW. Trevor King2013-12-231-1/+1
|/
* Release v2.7a1v2.7a1Dwayne Litzenberger2013-10-213-4/+4
* Update ChangeLogDwayne Litzenberger2013-10-211-0/+73
* Rename S2V -> _S2V until we come up with a real PRF APIDwayne Litzenberger2013-10-203-7/+7
* hexverify: Fix handling unicode strings on Python 3.2Dwayne Litzenberger2013-10-203-3/+13
* block_template: Fix compiler warning (%i -> %zi)Dwayne Litzenberger2013-10-201-1/+1
* Make MODE_OPENPGP accept uppercase 'IV' parameter.Dwayne Litzenberger2013-10-201-1/+8
* More ValueError -> TypeErrorDwayne Litzenberger2013-10-203-8/+8
* CMAC: raise TypeError instead of ValueError when ciphermod is missing or unus...Dwayne Litzenberger2013-10-201-2/+3
* _CBCMAC: Rename ignite() -> _ignite()Dwayne Litzenberger2013-10-201-3/+3
* Add encrypt_and_digest() and decrypt_and_verify()Legrandin2013-10-202-40/+103