aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* better englishAlex Gaynor2013-11-011-2/+2
|
* For exampleAlex Gaynor2013-11-011-3/+4
|
* Document how this returns bytesAlex Gaynor2013-11-011-1/+7
|
* Merge pull request #200 from dreid/primitive-hashesAlex Gaynor2013-11-017-83/+139
|\ | | | | [WIP] Reduce the surface of the primitive hash interface.
| * Improve Hash documentation.David Reid2013-11-011-3/+12
| |
| * Inline _copy_ctxDavid Reid2013-10-311-4/+1
| |
| * Enforce that Hash takes a HashAlgorithm instance.David Reid2013-10-314-29/+32
| |
| * Fix python3 compat for the hash_test.David Reid2013-10-311-2/+3
| |
| * Update documentationDavid Reid2013-10-311-8/+5
| |
| * Merge branch 'master' into primitive-hashesDavid Reid2013-10-31238-347/+336
| |\
| * | Fix python3 compatibility and pep8David Reid2013-10-302-3/+3
| | |
| * | Ignore abstractproperty.David Reid2013-10-301-0/+1
| | |
| * | Reduce the surface of the primitive hash interface. Add more interfaces, ↵David Reid2013-10-304-46/+94
| | | | | | | | | | | | drop direct hashlib compatibility.
* | | Merge pull request #202 from reaperhulk/cast128-cipherAlex Gaynor2013-10-316-3/+106
|\ \ \ | | | | | | | | CAST5 Support
| * | | disable support for CAST5 modes excepting ECBPaul Kehrer2013-10-311-6/+5
| | | |
| * | | add CAST5 docsPaul Kehrer2013-10-311-1/+9
| | | |
| * | | CAST5 support + ECB vectorsPaul Kehrer2013-10-315-2/+98
| | | |
* | | | Merge pull request #207 from dreid/temp-disable-coverage-on-pypyAlex Gaynor2013-10-311-0/+5
|\ \ \ \ | | | | | | | | | | Disable coverage on pypy temporarily.
| * | | | Disable coverage on pypy temporarily.David Reid2013-10-311-0/+5
| | | | |
* | | | | Merge pull request #208 from reaperhulk/skip-check-blowfishDavid Reid2013-10-311-0/+16
|\ \ \ \ \ | |_|/ / / |/| | | | Add skipif checks for blowfish
| * | | | add skipif checks for blowfishPaul Kehrer2013-10-311-0/+16
|/ / / /
* | | | Merge pull request #201 from reaperhulk/bf-supportAlex Gaynor2013-10-319-2/+445
|\ \ \ \ | |/ / / |/| | | Blowfish Support
| * | | move blowfish docs to new weak ciphers section, linkify aesPaul Kehrer2013-10-311-1/+11
| | | |
| * | | add bf docsPaul Kehrer2013-10-311-0/+9
| | | |
| * | | add blowfish cipher key_size testsPaul Kehrer2013-10-311-1/+14
| | | |
| * | | blowfish support + test vectorsPaul Kehrer2013-10-317-1/+412
| | |/ | |/| | | | | | | | | | Vectors sourced from https://www.schneier.com/code/vectors.txt but reformatted to comply with our NIST loader
* | | Merge pull request #205 from reaperhulk/simplify-testsAlex Gaynor2013-10-312-24/+2
|\ \ \ | | | | | | | | Simplify some test class structure
| * | | simplify some test class structurePaul Kehrer2013-10-312-24/+2
| |/ /
* | | Merge pull request #206 from alex/py3pep8David Reid2013-10-312-1/+7
|\ \ \ | |/ / |/| | Added a tox/travis just for running flake8 under py3k
| * | Added a tox/travis just for running flake8 under py3kAlex Gaynor2013-10-312-1/+7
|/ /
* | Merge pull request #198 from reaperhulk/vector-movinDavid Reid2013-10-31238-347/+336
|\ \ | |/ |/| Restructure vectors into ciphers/hashes/hmac
| * rename camellia testsPaul Kehrer2013-10-311-4/+4
| |
| * update tests for new test vector locationsPaul Kehrer2013-10-314-58/+22
| |
| * move AES/3DES vectors into mode dirs and separate SHA vectorsPaul Kehrer2013-10-31210-0/+17
| |
| * move around the tests to organize by cipherPaul Kehrer2013-10-304-148/+151
| |
| * restructure vectors into ciphers/hashes/hmacPaul Kehrer2013-10-30235-44/+49
|/
* Merge pull request #196 from reaperhulk/evp-cipher-set-key-lengthAlex Gaynor2013-10-292-1/+16
|\ | | | | Set the key length when initializing an OpenSSL cipher context
| * set the key length when initializing a cipher contextPaul Kehrer2013-10-292-1/+16
|/ | | | This is required for variable key length ciphers like CAST5 and blowfish
* Merge pull request #195 from alex/sphinx-hazmat-pluginDonald Stufft2013-10-2910-46/+70
|\ | | | | Sphinx hazmat plugin
| * Fixed pep8Alex Gaynor2013-10-291-0/+1
| |
| * Document that you should use the hazmat directiveAlex Gaynor2013-10-291-4/+11
| |
| * Made a sphinx extension which emits the hazardous materials danger admonitionAlex Gaynor2013-10-299-42/+58
|/
* Merge pull request #194 from alex/current-module-hmacDavid Reid2013-10-291-1/+3
|\ | | | | Use current module in the hmac docs, for consistency
| * Use current module in the hmac docs, for consistencyAlex Gaynor2013-10-291-1/+3
| |
* | Merge pull request #192 from alex/pkcs7-paddingDonald Stufft2013-10-296-8/+319
|\ \ | |/ |/| PKCS7 padding
| * Perform this comparison in a constan ttime fashionAlex Gaynor2013-10-291-2/+5
| |
| * raise an error if you unicodeAlex Gaynor2013-10-292-0/+16
| |
| * Clean up var namingAlex Gaynor2013-10-292-13/+6
| |
| * Optimize + test casesAlex Gaynor2013-10-292-8/+24
| |
| * Remove removed methods from docsAlex Gaynor2013-10-291-10/+0
| |