aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | Merge pull request #115 from dreid/asn1Donald Stufft2013-10-182-0/+122
| | |\ \ | | | | | | | | | | ASN1 because someone had to do it. Refs #77
| | | * | Add a space between arguments per the style guide.David Reid2013-10-181-1/+1
| | | | |
| | | * | More whitespace for great good.David Reid2013-10-181-0/+1
| | | | |
| | | * | Move some stuff that doesn't pass verification because reasons to the MACROS ↵David Reid2013-10-181-9/+15
| | | | | | | | | | | | | | | | | | | | section.
| | | * | ASN1 because someone had to do it. Refs #77David Reid2013-10-182-0/+115
| | | | |
| | * | | Bind teh remainder of EVPAlex Gaynor2013-10-181-0/+26
| | | |/ | | |/|
| | * | add OpenSSL EVP_MD* functions for upcoming cryptographic hash supportPaul Kehrer2013-10-181-0/+12
| | |/
| | * Removed name fro BlockCipher -- it's arbitrarily based on the format openssl ↵Alex Gaynor2013-10-171-6/+0
| | | | | | | | | | | | uses for *some* ciphers
| | * change abstract base class registration to use a decorator in modesPaul Kehrer2013-10-171-6/+11
| | |
| * | Include CTR modeAlex Gaynor2013-10-171-2/+2
| | |
| * | Merge branch 'master' into refactor-cipher-namesAlex Gaynor2013-10-173-0/+15
| |\|
| | * AES Counter supportPaul Kehrer2013-10-173-0/+15
| | | | | | | | | | | | | | | * vectors from RFC 3686 * Documentation for the mode
| * | pep8 and py3k fixesAlex Gaynor2013-10-161-1/+1
| | |
| * | Refactor how cipher names are computedAlex Gaynor2013-10-162-11/+45
| |/
* | Get the tests runningAlex Gaynor2013-10-161-0/+10
| |
* | Merge branch 'master' into triple-desAlex Gaynor2013-10-1620-63/+780
|\| | | | | | | | | | | | | | | | | 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 #106 from alex/duplication-reductionDonald Stufft2013-10-161-2/+5
| |\ | | | | | | Remove much of the duplication found in the tests
| | * Consolidate this listAlex Gaynor2013-10-161-2/+5
| | |
| * | 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-162-1/+25
| |\ \ | | |/ | |/| Camellia support
| | * change camellia keysize to frozenset to match recent PRPaul Kehrer2013-10-061-1/+1
| | |
| | * rebase and modify to support some changed behaviorsPaul Kehrer2013-10-061-6/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | * 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)
| | * Camellia block cipher supportPaul Kehrer2013-10-061-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | * 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.
| * | openssl initial bio support (refs #77)Paul Kehrer2013-10-153-1/+168
| | |
| * | Merge pull request #102 from reaperhulk/openssl-conf-supportAlex Gaynor2013-10-152-0/+27
| |\ \ | | | | | | | | skeleton openssl conf support refs #77
| | * | skeleton openssl conf support refs #77Paul Kehrer2013-10-142-0/+27
| | | |
| * | | add some openssl CRYPTO_* methods for memory debugging. refs #77Paul Kehrer2013-10-141-0/+10
| |/ /
| * | loop over functions and macros separately rather than using zipPaul Kehrer2013-10-121-3/+2
| | |
| * | Load types from all cffi modules before declaring functions or macrosPaul Kehrer2013-10-121-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change loads all the types via cdef & then loops over the macros & functions and cdefs them. The advantage of this approach is that you can define the types in the right modules without worrying about import order. For example, if you need the BIO typedef in the asn1 module but it is defined in the bio module you can still import the modules alphabetically and expect that BIO will be properly declared.
| * | Initial bindings for OpenSSL ENGINE support.Paul Kehrer2013-10-083-1/+53
| | | | | | | | | | | | | | | | | | | | | | | | * These bindings are sufficient to allow a user to use the rdrand engine (if available) and set an instantiated engine as a default for various operations. * Reminder: OpenSSL engines require careful management of both structural and functional references or else you'll leak memory.
| * | add openssl err bindingsPaul Kehrer2013-10-082-0/+58
| |/
| * Make key_sizes a frozenset, since these are/should be immutableMarcin Wielgoszewski2013-10-061-1/+1
| |
| * rand bindings for openssl (refs #77)Paul Kehrer2013-10-052-0/+38
| | | | | | | | | | | | These bindings should be used with care as there are many opportunities to shoot yourself in the foot. Take special care to re-seed on process fork and for the love of god don't use DUAL_EC_DRBG
| * jokers to the left, pointers to the rightPaul Kehrer2013-10-051-1/+1
| |
| * too many rsas makes me rsa blindPaul Kehrer2013-10-051-1/+1
| |
| * remove local variable names from function declarationsPaul Kehrer2013-10-051-3/+3
| |
| * Bindings for OpenSSL's RSA. Refs #77Paul Kehrer2013-10-052-0/+32
| |
| * Merge branch 'master' into bind-dhAlex Gaynor2013-10-044-1/+60
| |\ | | | | | | | | | | | | Conflicts: cryptography/bindings/openssl/api.py
| | * Merge branch 'master' into bind-dsaAlex Gaynor2013-10-043-1/+29
| | |\ | | | | | | | | | | | | | | | | Conflicts: cryptography/bindings/openssl/api.py
| | | * Merge pull request #88 from pyca/bind-cryptoDonald Stufft2013-10-042-0/+28
| | | |\ | | | | | | | | | | Bind OpenSSL's crypto. Refs #77
| | | | * Bind OpenSSL's crypto. Refs #77Alex Gaynor2013-10-032-0/+28
| | | | |
| | | * | Switch all repositories over to the new locationDonald Stufft2013-10-041-1/+1
| | | |/
| | * / Added bindings for OpenSSL's DSA. Refs #77.Alex Gaynor2013-10-032-0/+31
| | |/
| * / Bind OpenSSL's DH. Refs #77Alex Gaynor2013-10-032-0/+29
| |/
| * Use a None default so composition is easierAlex Gaynor2013-10-031-1/+5
| |
| * Make default_api privateAlex Gaynor2013-10-032-3/+3
| |
| * Explicitly pass around the API, and run all tests under all available APIsAlex Gaynor2013-10-032-5/+22
| |