aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
Commit message (Collapse)AuthorAgeFilesLines
* Explanatory commentAlex Gaynor2014-01-011-1/+3
|
* Merge branch 'master' into validate-ivAlex Gaynor2014-01-0132-202/+713
|\ | | | | | | | | | | Conflicts: tests/hazmat/backends/test_openssl.py tests/hazmat/primitives/test_block.py
| * Bump the copyright yearAlex Gaynor2014-01-011-1/+1
| |
| * missed some param names (C style fix)Paul Kehrer2013-12-291-2/+2
| |
| * add the rest of the engine methodsPaul Kehrer2013-12-291-7/+101
| |
| * fix bogus mergeJean-Paul Calderone2013-12-291-0/+1
| |
| * Switch to long for these stand-in constants as suggested by reaperhulk to ↵Jean-Paul Calderone2013-12-291-2/+2
| | | | | | | | avoid compiler warnings
| * merge origin/masterJean-Paul Calderone2013-12-291-0/+12
| |\
| | * Restore exposing a symbol when it's available. Refs #351Alex Gaynor2013-12-291-0/+13
| | |
| * | Optionally bind some TLSv1_1 and TLSv1_2 featuresJean-Paul Calderone2013-12-291-2/+57
| |/
| * Merge pull request #369 from public/signed-time_tPaul Kehrer2013-12-281-1/+1
| |\ | | | | | | time_t is signed
| | * time_t is signedAlex Stapleton2013-12-291-1/+1
| | | | | | | | | | | | Unless you are on QNX, lulz.
| * | Make some types wider to be warning free on OS XAlex Gaynor2013-12-282-5/+5
| | |
| * | remove some consts in the function arg declarationsPaul Kehrer2013-12-283-4/+4
| | | | | | | | | | | | | | | | | | These functions take const in OpenSSL 1.0.0+ but not in 0.9.8. Removing the const declaration will silence warnings for 0.9.8 but not cause them in 1.0.0+. Not ideal, but *fingers crossed* shouldn't cause problems
| * | Port the STACK_OF(X509_REVOKED) stuff to use the same pattern @exarkun ↵Alex Gaynor2013-12-281-6/+7
| | | | | | | | | | | | figured out for X509
| * | Merge pull request #364 from exarkun/certificates-and-stuffAlex Gaynor2013-12-284-12/+35
| |\ \ | | | | | | | | expose SSL_get_peer_cert_chain, SSL_get_client_CA_list, and SSL_CTX_set_client_CA_list
| | * | clean up the comments a bitJean-Paul Calderone2013-12-283-8/+10
| | | |
| | * | Switch other spellings of this type from `struct stack_st_X509` to ↵Jean-Paul Calderone2013-12-283-12/+12
| | | | | | | | | | | | | | | | `Cryptography_STACK_OF_X590` (and similar for X509_NAME)
| | * | move these type definitions to perhaps-more-appropriate modulesJean-Paul Calderone2013-12-283-9/+6
| | | |
| | * | This bit is important as well.Jean-Paul Calderone2013-12-281-0/+1
| | | |
| | * | Put back these other functions now that they ought to work.Jean-Paul Calderone2013-12-281-3/+4
| | | |
| | * | Merge remote-tracking branch 'origin/master' into certificates-and-stuffJean-Paul Calderone2013-12-284-56/+63
| | |\ \
| | * | | typedef has to come before function prototype that relies on it; only place ↵Jean-Paul Calderone2013-12-281-5/+5
| | | | | | | | | | | | | | | | | | | | that can happen is if the typedef is in INCLUDES woops
| | * | | simplify a bit - just try tackling one problem at a time. and add some more ↵Jean-Paul Calderone2013-12-281-6/+16
| | | | | | | | | | | | | | | | | | | | typedefs that maybe should help (still broken though)
| | * | | expose SSL_get_peer_cert_chain, SSL_get_client_CA_list, and ↵Jean-Paul Calderone2013-12-281-0/+12
| | | | | | | | | | | | | | | | | | | | SSL_CTX_set_client_CA_list
| * | | | Merge pull request #365 from public/const-string-literalPaul Kehrer2013-12-281-1/+1
| |\ \ \ \ | | | |_|/ | | |/| | String literals are const char*.
| | * | | String literals are const char*.Alex Stapleton2013-12-281-1/+1
| | | |/ | | |/| | | | | | | | | | | | | | | | | GCC won't whine with -Wall because so much code isn't const correct but writing to a string literal is undefined. -Wwrite-strings is the warning flag to enable to spot these.
| * / | sk_X509_EXTENSION_delete returns X509_EXTENSION*Alex Stapleton2013-12-281-1/+1
| |/ /
| * | Merge pull request #361 from reaperhulk/define-to-intAlex Gaynor2013-12-283-56/+59
| |\ \ | | | | | | | | Convert #defines to explicit type declaration for consistency
| | * | Convert #defines to explicit type declaration for consistencyPaul Kehrer2013-12-273-56/+59
| | |/
| * | Merge pull request #362 from exarkun/ssleay-versionPaul Kehrer2013-12-281-0/+3
| |\ \ | | | | | | | | expose SSLeay and SSLeay_version
| | * | expose SSLeay and SSLeay_versionJean-Paul Calderone2013-12-281-0/+3
| | |/
| * / add the missing SSL_get_servername prototype (already handled in the ↵Jean-Paul Calderone2013-12-281-0/+1
| |/ | | | | | | existing SNI conditional section)
| * Merge pull request #360 from reaperhulk/c-style-part-deuxAlex Gaynor2013-12-272-4/+4
| |\ | | | | | | A few missed functions in the () -> (void) migration
| | * a few missed functions in the () -> (void) migrationPaul Kehrer2013-12-272-4/+4
| | |
| * | Merge pull request #357 from public/const-ASN1_ITEM_ptrJean-Paul Calderone2013-12-271-1/+1
| |\ \ | | |/ | |/| ASN1_ITEM_ptr always has a const return type
| | * ASN1_ITEM_ptr always has a const return typeAlex Stapleton2013-12-271-1/+1
| | |
| * | move macro from functions into macros where it belongsPaul Kehrer2013-12-271-2/+1
| | |
| * | convert all functions without args from () to (void)Paul Kehrer2013-12-2713-62/+62
| | |
| * | Merge remote-tracking branch 'origin/master' into some-typedef-fixesJean-Paul Calderone2013-12-278-3/+67
| |\ \
| | * | A handful of style fixes in the cffi bindingsAlex Gaynor2013-12-272-6/+6
| | | |
| | * | Merge pull request #335 from exarkun/pyopenssl-test_crypto-with-optionalsAlex Gaynor2013-12-276-1/+54
| | |\ \ | | | | | | | | | | Pyopenssl test crypto with optionals
| | | * | remove parameter names, fix some spacingJean-Paul Calderone2013-12-273-15/+15
| | | | |
| | | * | Merge remote-tracking branch 'origin/master' into ↵Jean-Paul Calderone2013-12-276-23/+32
| | | |\| | | | | | | | | | | | | | | | pyopenssl-test_crypto-with-optionals
| | | * | merge base branch (misc-simple-extras-with-optionals)Jean-Paul Calderone2013-12-232-16/+26
| | | |\ \
| | | * \ \ Merge remote-tracking branch 'mine/misc-simple-extras-with-optionals' into ↵Jean-Paul Calderone2013-12-231-0/+16
| | | |\ \ \ | | | | | | | | | | | | | | | | | | | | | pyopenssl-test_crypto-with-optionals
| | | * | | | revert the time_t and BN_ULONG fixesJean-Paul Calderone2013-12-232-16/+2
| | | | | | |
| | | * | | | Define the newly-required CONDITIONAL_NAMESJean-Paul Calderone2013-12-231-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | None of these are conditional at the moment.
| | | * | | | bind a few more things necessary for OpenSSL.crypto. Also tweak some ↵Jean-Paul Calderone2013-12-237-3/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | | | existing definitions to be more functional.
| | * | | | | Merge pull request #315 from juliankrause/verifyAlex Gaynor2013-12-272-2/+13
| | |\ \ \ \ \ | | | |_|_|_|/ | | |/| | | | Add verify function to hmac and hashes.