aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* make things happyAlex Gaynor2014-10-254-21/+25
|
* Merge branch 'master' into verify-interfacesAlex Gaynor2014-10-253-16/+37
|\
| * Merge pull request #1444 from alex/attributes-as-propertiesPaul Kehrer2014-10-258-16/+39
| |\ | | | | | | Expose all attributes via properties so they can be statically introspected
| | * Expose all attributes via properties so they can be statically introspectedAlex Gaynor2014-10-258-16/+39
| | | | | | | | | | | | Refs #1424
| * | Merge pull request #1437 from reaperhulk/conftest-changesAlex Gaynor2014-10-253-16/+37
| |\ \ | | |/ | |/| filter backends during initial generation to elide tests entirely
| | * move skip_if_empty to separate function for test coveragePaul Kehrer2014-10-253-12/+23
| | |
| | * add comment explaining some weirdnessPaul Kehrer2014-10-241-0/+2
| | |
| | * reorganize try block for test generationPaul Kehrer2014-10-241-3/+4
| | |
| | * filter backends during initial generation to elide tests entirelyPaul Kehrer2014-10-242-14/+21
| | |
* | | Merge branch 'master' into verify-interfacesAlex Gaynor2014-10-258-48/+59
|\| |
| * | Merge pull request #1438 from alex/multifernet-testsPaul Kehrer2014-10-251-1/+4
| |\ \ | | | | | | | | Fixed #1436 -- mark the multifernet tests as requiring the backends they need
| | * | Fixed #1436 -- mark the multifernet tests as requiring the backends they needAlex Gaynor2014-10-241-1/+4
| | |/
| * | Merge pull request #1441 from alex/refactor-cffi-compilationPaul Kehrer2014-10-256-41/+43
| |\ \ | | | | | | | | Refactor our creation of CFFI FFI and libraries slightly.
| | * | Also switch to the explicit verifier construction approach, so the diff for ↵Alex Gaynor2014-10-241-5/+9
| | | | | | | | | | | | | | | | disabling implicit compile is even shorter
| | * | Update test for new APIAlex Gaynor2014-10-241-3/+3
| | | |
| | * | Refactor our creation of CFFI FFI and libraries slightly.Alex Gaynor2014-10-245-37/+35
| | |/ | | | | | | | | | Centralize everything for ease of use.
| * | Merge pull request #1435 from alex/bump-py3k-versionsPaul Kehrer2014-10-241-6/+12
| |\ \ | | |/ | |/| bump the point releases we test against
| | * make sure pyenv is up to dateAlex Gaynor2014-10-241-0/+6
| | |
| | * bump the point releases we test againstAlex Gaynor2014-10-231-6/+6
| | |
* | | Merge branch 'master' into verify-interfacesAlex Gaynor2014-10-2429-154/+140
|\| | | | | | | | | | | | | | Conflicts: cryptography/hazmat/primitives/hmac.py
| * | Merge pull request #1434 from alex/requires-backend-interfacePaul Kehrer2014-10-2429-154/+140
| |\ \ | | | | | | | | Change how we represented that a test requires a backend.
| | * | public API onlyAlex Gaynor2014-10-231-1/+1
| | | |
| | * | flatten lineAlex Gaynor2014-10-231-4/+1
| | | |
| | * | Fix to handle multiple instances of @pytest.mark_requires_backend_interfaceAlex Gaynor2014-10-231-6/+9
| | | |
| | * | Change how we represented that a test requires a backend.Alex Gaynor2014-10-2329-154/+140
| | |/ | | | | | | | | | This way is more extensible and requires less maintaince
| * | Merge pull request #1433 from alex/match-interface-namesPaul Kehrer2014-10-234-23/+23
| |\ \ | | |/ | |/| Changed methods on interface providers to have argument names match the interface.
| | * Changed methods on interface providers to have argument names match the ↵Alex Gaynor2014-10-234-23/+23
| |/ | | | | | | | | | | interface. This is important because it means passing things as keyword arguments will work consistently
* | Merge branch 'master' into verify-interfacesAlex Gaynor2014-10-234-109/+36
|\| | | | | | | | | Conflicts: tests/hazmat/primitives/test_hmac.py
| * Merge pull request #1431 from alex/fix-typosPaul Kehrer2014-10-231-4/+4
| |\ | | | | | | Fixed a few typos
| | * Fixed a few typosAlex Gaynor2014-10-221-4/+4
| | |
| * | Merge pull request #1430 from alex/its-a-macPaul Kehrer2014-10-232-0/+2
| |\ \ | | | | | | | | Fixed #1429 -- mark these classes as implementing the MACContext interface
| | * | Fixed #1429 -- mark these classes as implementing the MACContext interfaceAlex Gaynor2014-10-222-0/+2
| | |/
| * | Merge pull request #1428 from alex/shorten-ecPaul Kehrer2014-10-231-105/+30
| |\ \ | | | | | | | | Simplify the implementation of the EC curve keys
| | * | Simplify the implementation of the EC curve keysAlex Gaynor2014-10-221-105/+30
| | |/
| * | Merge pull request #1427 from reaperhulk/fix-indentationAlex Gaynor2014-10-221-1/+1
| |\ \ | | |/ | |/| fix overindent
| | * fix overindentPaul Kehrer2014-10-221-1/+1
| |/
* | fixed some naming in the testsAlex Gaynor2014-10-221-7/+7
| |
* | Statically verify interface implementations, and fix all the resulting bugsAlex Gaynor2014-10-2219-43/+92
| |
* | Merge branch 'master' into verify-interfacesAlex Gaynor2014-10-2215-108/+141
|\| | | | | | | | | Conflicts: cryptography/utils.py
| * Merge pull request #1426 from alex/read-only-propertyPaul Kehrer2014-10-229-104/+35
| |\ | | | | | | Added a utility for implementing a read only property of another field
| | * oops, fix recursionAlex Gaynor2014-10-211-2/+2
| | |
| | * Added a utility for implementing a read only property of another fieldAlex Gaynor2014-10-219-104/+35
| | |
| * | Merge pull request #1425 from reaperhulk/fix-missing-methodAlex Gaynor2014-10-222-0/+15
| |\ \ | | |/ | |/| add load_dsa_parameter_numbers on multibackend
| | * add load_dsa_parameter_numbers on multibackendPaul Kehrer2014-10-212-0/+15
| | |
| * | Merge pull request #1422 from alex/multi-fernetDavid Reid2014-10-214-4/+91
| |\ \ | | |/ | |/| Fixes #1327 -- adds multifernet
| | * added docs stuff on when addedAlex Gaynor2014-10-202-0/+4
| | |
| | * Merge branch 'master' into multi-fernetAlex Gaynor2014-10-207-26/+70
| | |\ | | |/ | |/|
| | * flake8 + cleanupAlex Gaynor2014-10-201-7/+6
| | |
| | * Handle non-iterable arguments reasonableAlex Gaynor2014-10-202-0/+5
| | |
| | * improved the error messageAlex Gaynor2014-10-201-1/+3
| | |