aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bindings
Commit message (Collapse)AuthorAgeFilesLines
* modify modes to use abc so api can determine what attribute to callPaul Kehrer2013-09-101-4/+1
| | | | | | | * Due to a circular dependency issue I had to put the abcs in cryptography.primitives.abc.block.modes * The ABCs look like they do because that is the form that is compatible with 2.x and 3.x
* rename get_null_for_ecb to get_iv_for_ecb per alex's commentsPaul Kehrer2013-09-101-2/+2
|
* add get_iv_or_nonce() methods to replace _get_iv() on apiPaul Kehrer2013-09-101-5/+2
|
* add ECB support to create_block_cipher_contextPaul Kehrer2013-09-101-0/+6
| | | | | * This is a basic refactor to support ECB and CBC mode in this method. We can use this as a starting point to discuss a better solution.
* Update docstring to pass alex8 lintingPaul Kehrer2013-09-091-1/+2
|
* openssl_version_text now calls startswith rather than findPaul Kehrer2013-09-091-1/+1
|
* ascii decode on openssl_version_text + doc string improvementsPaul Kehrer2013-09-091-0/+7
|
* Add method to bindings to get OPENSSL_VERSION_TEXTPaul Kehrer2013-09-091-0/+3
| | | | | | | * This allows you to check that you're binding against the expected version of OpenSSL * Test is pretty basic (just checks to see that the string starts with OpenSSL)
* Refactor into latest design decisionHynek Schlawack2013-08-082-0/+19
C is an implementation detail of the wrapper API, so we go with 'bindings'. Also create/fix some namespaces.