Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move the cryptography package into a src/ subdirectory | Donald Stufft | 2014-11-13 | 96 | -12481/+0 |
| | | | | | | | | | | | | | Due to differences in how py.test determines which module to ``import`` the test suite actually runs against the cryptography which is in the *current* directory instead of the cryptography which is installed. The problem essentially boils down to when there is a tests/__init__.py then py.test adds the current directory to the front of the sys.path, causing it to take precedence over the installed location. This means that running the tests relies on the implicit compile that CFFI does instead of testing against what people will actually be runnning, which is the module compiled by setup.py. | ||||
* | add binding for openssl `X509_REQ_digest` | Ben Mather | 2014-11-12 | 1 | -0/+2 |
| | |||||
* | Fix the import order | Donald Stufft | 2014-11-07 | 1 | -2/+1 |
| | |||||
* | Lazily load the library on first use instead of on import | Donald Stufft | 2014-11-07 | 3 | -4/+20 |
| | |||||
* | Build FFI instance when class is created, load library when instantiated | Donald Stufft | 2014-11-07 | 5 | -63/+77 |
| | |||||
* | appease the flake8 in the sky | Alex Gaynor | 2014-11-07 | 1 | -0/+1 |
| | |||||
* | We can test this, we have the power! Fixes #874 | Alex Gaynor | 2014-11-07 | 1 | -9/+12 |
| | |||||
* | Update the license in setup.py | Alex Gaynor | 2014-10-31 | 1 | -1/+1 |
| | |||||
* | flake8 fix | Alex Gaynor | 2014-10-30 | 1 | -2/+2 |
| | |||||
* | Remove duplicate code, now the verify method isn't special | Alex Gaynor | 2014-10-30 | 5 | -14/+12 |
| | |||||
* | Merge branch 'master' into verify-interfaces | Alex Gaynor | 2014-10-30 | 1 | -0/+2 |
|\ | |||||
| * | Removed argument names per review | Stanisław Pitucha | 2014-10-28 | 1 | -1/+1 |
| | | |||||
| * | Add pkey comparison function to bindings | Stanisław Pitucha | 2014-10-28 | 1 | -0/+2 |
| | | | | | | | | | | Expose the EVP_PKEY_cmp function, so that pyOpenSSL can implement comparison methods on PKey. | ||||
| * | Expose all attributes via properties so they can be statically introspected | Alex Gaynor | 2014-10-25 | 8 | -16/+39 |
| | | | | | | | | Refs #1424 | ||||
* | | many verify, for now | Alex Gaynor | 2014-10-28 | 2 | -6/+14 |
| | | |||||
* | | make things happy | Alex Gaynor | 2014-10-25 | 3 | -11/+25 |
| | | |||||
* | | Merge branch 'master' into verify-interfaces | Alex Gaynor | 2014-10-25 | 5 | -38/+40 |
|\| | |||||
| * | Also switch to the explicit verifier construction approach, so the diff for ↵ | Alex Gaynor | 2014-10-24 | 1 | -5/+9 |
| | | | | | | | | disabling implicit compile is even shorter | ||||
| * | Refactor our creation of CFFI FFI and libraries slightly. | Alex Gaynor | 2014-10-24 | 5 | -37/+35 |
| | | | | | | | | Centralize everything for ease of use. | ||||
| * | Changed methods on interface providers to have argument names match the ↵ | Alex Gaynor | 2014-10-23 | 3 | -16/+16 |
| | | | | | | | | | | | | interface. This is important because it means passing things as keyword arguments will work consistently | ||||
* | | Merge branch 'master' into verify-interfaces | Alex Gaynor | 2014-10-23 | 3 | -105/+32 |
|\| | | | | | | | | | Conflicts: tests/hazmat/primitives/test_hmac.py | ||||
| * | Merge pull request #1430 from alex/its-a-mac | Paul Kehrer | 2014-10-23 | 2 | -0/+2 |
| |\ | | | | | | | Fixed #1429 -- mark these classes as implementing the MACContext interface | ||||
| | * | Fixed #1429 -- mark these classes as implementing the MACContext interface | Alex Gaynor | 2014-10-22 | 2 | -0/+2 |
| | | | |||||
| * | | Simplify the implementation of the EC curve keys | Alex Gaynor | 2014-10-22 | 1 | -105/+30 |
| |/ | |||||
* | | Statically verify interface implementations, and fix all the resulting bugs | Alex Gaynor | 2014-10-22 | 12 | -41/+70 |
| | | |||||
* | | Merge branch 'master' into verify-interfaces | Alex Gaynor | 2014-10-22 | 11 | -104/+62 |
|\| | | | | | | | | | Conflicts: cryptography/utils.py | ||||
| * | Merge pull request #1426 from alex/read-only-property | Paul Kehrer | 2014-10-22 | 9 | -104/+35 |
| |\ | | | | | | | Added a utility for implementing a read only property of another field | ||||
| | * | oops, fix recursion | Alex Gaynor | 2014-10-21 | 1 | -2/+2 |
| | | | |||||
| | * | Added a utility for implementing a read only property of another field | Alex Gaynor | 2014-10-21 | 9 | -104/+35 |
| | | | |||||
| * | | Merge pull request #1425 from reaperhulk/fix-missing-method | Alex Gaynor | 2014-10-22 | 1 | -0/+6 |
| |\ \ | | |/ | |/| | add load_dsa_parameter_numbers on multibackend | ||||
| | * | add load_dsa_parameter_numbers on multibackend | Paul Kehrer | 2014-10-21 | 1 | -0/+6 |
| | | | |||||
| * | | Merge branch 'master' into multi-fernet | Alex Gaynor | 2014-10-20 | 5 | -24/+36 |
| |\| | |||||
| * | | Handle non-iterable arguments reasonable | Alex Gaynor | 2014-10-20 | 1 | -0/+1 |
| | | | |||||
| * | | improved the error message | Alex Gaynor | 2014-10-20 | 1 | -1/+3 |
| | | | |||||
| * | | Fixes #1327 -- adds multifernet | Alex Gaynor | 2014-10-20 | 1 | -0/+18 |
| | | | |||||
* | | | Fix for abstractproperty, and make things nicer | Alex Gaynor | 2014-10-21 | 1 | -5/+10 |
| | | | |||||
* | | | py3k fix | Alex Gaynor | 2014-10-21 | 1 | -1/+1 |
| | | | |||||
* | | | Fixes #1024 -- a utility function for checking an implementor against an ABC | Alex Gaynor | 2014-10-21 | 1 | -0/+21 |
| |/ |/| | |||||
* | | Add to changelog. Document deprecation. | Terry Chia | 2014-10-20 | 3 | -2/+1 |
| | | |||||
* | | Remove algorithm property from MACContext and alias CMACContext. | Terry Chia | 2014-10-20 | 1 | -27/+2 |
| | | |||||
* | | Add docs. | Terry Chia | 2014-10-20 | 1 | -1/+1 |
| | | |||||
* | | Ooops. | Terry Chia | 2014-10-20 | 1 | -1/+1 |
| | | |||||
* | | Add MACContext and make HMAC and CMAC to use it. | Terry Chia | 2014-10-20 | 5 | -3/+41 |
|/ | |||||
* | eep, stray space | Alex Gaynor | 2014-10-19 | 1 | -1/+1 |
| | |||||
* | Fixed an issue in fernet where the wrong exception would occur on an ↵ | Alex Gaynor | 2014-10-19 | 1 | -1/+1 |
| | | | | | | all-nulls input. Also switched a few tests to not generate a key | ||||
* | Merge pull request #1418 from alex/fix-ec-complains | Paul Kehrer | 2014-10-19 | 1 | -0/+5 |
|\ | | | | | Fixes #1416 -- replaced assertions with error checking in EC key from numbers. | ||||
| * | Do these checks in pure python eagerly. | Alex Gaynor | 2014-10-19 | 1 | -5/+7 |
| | | | | | | | | We get errors in different places, depending on py2k vs. py3k if we don't. | ||||
| * | Fixes #1416 -- replaced assertions with error checking in EC key from numbers. | Alex Gaynor | 2014-10-19 | 1 | -2/+5 |
| | | | | | | | | Includes tests. | ||||
* | | Merge pull request #1417 from reaperhulk/fix-interface | Alex Gaynor | 2014-10-19 | 1 | -0/+12 |
|\ \ | |/ |/| | add missing signer/verifier to DSAPublicKey and DSAPrivateKey ifaces | ||||
| * | add missing signer/verifier to DSAPublicKey and DSAPrivateKey ifaces | Paul Kehrer | 2014-10-19 | 1 | -0/+12 |
| | | | | | | | | | | These were present in the docs and the OpenSSL provider, but not properly listed on the interface |