aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | remove raw whirlpool vectors (formatted vectors already committed)Paul Kehrer2013-10-181-73/+0
| | | |
| | * | Added MD5 test vectors from RFC 1321 (http://www.ietf.org/rfc/rfc1321.txt)Paul Kehrer2013-10-011-0/+29
| | | |
| | * | add ISO/IEC 10118-3 test vectors for RIPEMD160 and Whirlpool.Paul Kehrer2013-10-013-0/+178
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These vectors have been reformatted from their original form to conform to the same format as the NIST SHA tests. * RIPEMD160 original vectors from the hash homepage - http://homes.esat.kuleuven.be/~bosselae/ripemd160.html * Whirlpool vectors from the hash homepage - http://www.larc.usp.br/~pbarreto/WhirlpoolPage.html (yes that really is the homepage)
| | * | SHA test vectors (byte oriented) from NISTPaul Kehrer2013-09-3021-0/+16281
| | | | | | | | | | | | | | | | | | | | Obtained from http://csrc.nist.gov/groups/STM/cavp/ with this link: http://csrc.nist.gov/groups/STM/cavp/documents/shs/shabytetestvectors.zip
| * | | Merge pull request #113 from alex/remove-nameDonald Stufft2013-10-172-16/+1
| |\ \ \ | | | | | | | | | | Removed name fro BlockCipher -- it's arbitrarily based on the format ope...
| | * | | Removed name fro BlockCipher -- it's arbitrarily based on the format openssl ↵Alex Gaynor2013-10-172-16/+1
| |/ / / | | | | | | | | | | | | uses for *some* ciphers
| * | | Merge pull request #111 from reaperhulk/abc-decoratorsAlex Gaynor2013-10-171-6/+11
| |\ \ \ | | | | | | | | | | change abstract base class registration to use a decorator in modes
| | * | | change abstract base class registration to use a decorator in modesPaul Kehrer2013-10-171-6/+11
| |/ / /
| | | * fixAlex Gaynor2013-10-171-1/+3
| | | |
| | | * Include CTR modeAlex Gaynor2013-10-171-2/+2
| | | |
| | | * Merge branch 'master' into refactor-cipher-namesAlex Gaynor2013-10-178-0/+59
| | | |\ | | |_|/ | |/| |
| * | | Merge pull request #104 from reaperhulk/ctr-supportAlex Gaynor2013-10-178-0/+59
| |\ \ \ | | | | | | | | | | AES Counter support
| | * | | additional doc work on ctrPaul Kehrer2013-10-171-8/+7
| | | | |
| | * | | ctr doc language take 3Paul Kehrer2013-10-171-8/+14
| | | | |
| | * | | remove confusing explanation about reusing nonce in counter mode docsPaul Kehrer2013-10-171-3/+1
| | | | |
| | * | | update docs to roughly describe many time pad attack & link cbcPaul Kehrer2013-10-171-2/+5
| | | | |
| | * | | AES Counter supportPaul Kehrer2013-10-178-0/+53
| |/ / / | | | | | | | | | | | | | | | | * vectors from RFC 3686 * Documentation for the mode
| | | * Up our coverageAlex Gaynor2013-10-161-0/+8
| | | |
| | | * pep8 and py3k fixesAlex Gaynor2013-10-163-5/+13
| | | |
| | | * Refactor how cipher names are computedAlex Gaynor2013-10-165-16/+50
| | |/ | |/|
* | | Get the tests runningAlex Gaynor2013-10-162-1/+21
| | |
* | | Fixed huge inaccuracies in the docsAlex Gaynor2013-10-161-6/+4
| | |
* | | Port this test except it doesn't work because of plaintext and ciphertext ↵Alex Gaynor2013-10-161-12/+6
| | | | | | | | | | | | naming, need to make that flexible
* | | Merge branch 'master' into triple-desAlex Gaynor2013-10-1652-299/+13338
|\| | | | | | | | | | | | | | | | | | | | | | | | | | Also moved most of the tests to the new format except for one which doesn't yet have an obvious translation Conflicts: cryptography/primitives/block/ciphers.py tests/primitives/test_nist.py
| * | Merge pull request #107 from alex/ignore-htmlcovDonald Stufft2013-10-161-0/+1
| |\ \ | | | | | | | | Ignore the htmlcov dir
| | * | Ignore the htmlcov dirAlex Gaynor2013-10-161-0/+1
| | | |
| * | | Merge pull request #106 from alex/duplication-reductionDonald Stufft2013-10-169-429/+349
| |\ \ \ | | | | | | | | | | Remove much of the duplication found in the tests
| | * | | flake8 fixesAlex Gaynor2013-10-163-3/+6
| | | | |
| | * | | Unit test the test harnessAlex Gaynor2013-10-161-0/+14
| | | | |
| | * | | YoloAlex Gaynor2013-10-161-1/+1
| | | | |
| | * | | Rewrite to avoid capitalization issuesAlex Gaynor2013-10-161-1/+1
| | | | |
| | * | | Move around the skip logicAlex Gaynor2013-10-163-21/+26
| | | | |
| | * | | Consolidate this listAlex Gaynor2013-10-163-6/+9
| | | | |
| | * | | Ported openssl vector testsAlex Gaynor2013-10-166-141/+88
| | | | |
| | * | | Missed fileAlex Gaynor2013-10-161-0/+40
| | | | |
| | * | | Start of the great refactoringAlex Gaynor2013-10-164-310/+218
| | |/ /
| * | | Merge pull request #105 from Ivoz/ssl-fixAlex Gaynor2013-10-163-4/+30
| |\ \ \ | | |/ / | |/| | Explicitly add ssl.h as dependency
| | * | Explicitly add ssl.h as dependencyMatthew Iversen2013-10-173-4/+30
| |/ / | | | | | | | | | | | | Add ssl as a linked library, this is at least necessary on ArchLinux
| * | Merge pull request #103 from alex/style-fixesDonald Stufft2013-10-161-15/+18
| |\ \ | | | | | | | | A handful of small style fixes
| | * | A handful of small style fixesAlex Gaynor2013-10-151-15/+18
| | | |
| * | | Merge pull request #72 from reaperhulk/camellia-supportAlex Gaynor2013-10-168-2/+217
| |\ \ \ | | |/ / | |/| | Camellia support
| | * | use the pragmas consistently.Paul Kehrer2013-10-151-2/+2
| | | |
| | * | add pragma: no cover to handle coverage in the tests for the momentPaul Kehrer2013-10-152-4/+4
| | | |
| | * | change camellia keysize to frozenset to match recent PRPaul Kehrer2013-10-061-1/+1
| | | |
| | * | remove openssl api dependency in test_openssl_vectorsPaul Kehrer2013-10-062-12/+11
| | | | | | | | | | | | | | | | Update some single quotes to double for consistency
| | * | rebase and modify to support some changed behaviorsPaul Kehrer2013-10-064-36/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Update code to reflect new api object (ffi and lib are no longer private) * tests updated to take an api object * skipif marks removed for now as we need to use the api passed to each individual test. skip testing done inside the test * changed name of supports in api to supports_cipher (future PRs will contain supports_hash)
| | * | add pytest.ini with flags to show skipped test reasons, revert tox.iniPaul Kehrer2013-10-061-0/+2
| | | |
| | * | Camellia block cipher supportPaul Kehrer2013-10-066-1/+229
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Tests for CBC, OFB, CFB, and ECB * Tests will be automatically skipped if camellia support is not present in your OpenSSL library (e.g. OS X 10.8 with default OpenSSL) * Test for unsupported cipher in create_block_cipher_context * Docs for the cipher
| | * | lower ciphername, add api supports, improved assertion messagePaul Kehrer2013-10-061-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * supports method added to api to check if a ciphername is available. This will be used with skipif (and probably elsewhere) * ciphername lowered. OpenSSL frequently supports aliases for various casing, but reliably supports all lowercase. (e.g. camellia-128-cbc, vs Camellia-128-CBC) * When a cipher is not found an error will now be raised telling you what string cipher it couldn't find. This should probably become a real error like CipherNotFoundError.
| * | | Merge pull request #100 from reaperhulk/openssl-bio-bindingsAlex Gaynor2013-10-153-1/+168
| |\ \ \ | | | | | | | | | | openssl initial bio support (refs #77)