aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1694 from alex/x509-test-movePaul Kehrer2015-02-241-9/+7
|\ | | | | Updated tests for classes that have been moved
| * This module has been renamed.Alex Gaynor2015-02-231-9/+7
|/
* Merge pull request #1693 from alex/update-docsPaul Kehrer2015-02-231-2/+2
|\ | | | | Updated docs for new API
| * Updated docs for new APIAlex Gaynor2015-02-231-2/+2
|/
* Merge pull request #1610 from reaperhulk/load-der-keysAlex Gaynor2015-02-237-5/+455
|\ | | | | DER key loading support for the OpenSSL backend
| * remove unneeded parensPaul Kehrer2015-02-221-2/+2
| |
| * free PKCS8_PRIV_KEY_INFO * and reuse membio for der loadingPaul Kehrer2015-02-222-8/+12
| |
| * fix docs for unsupportedalgorithm exception (thanks nitpicky)Paul Kehrer2015-02-191-2/+2
| |
| * move gc above potential exceptionPaul Kehrer2015-02-191-2/+2
| |
| * add examplesPaul Kehrer2015-02-191-0/+41
| |
| * support DER public and private key loading in the openssl backendPaul Kehrer2015-02-196-5/+410
| |
* | Merge pull request #1692 from reaperhulk/ibm-has-the-worst-webserverAlex Gaynor2015-02-231-1/+1
|\ \ | | | | | | remove IBM link and replace with smartbear PDF link
| * | remove IBM link and replace with smartbear PDF linkPaul Kehrer2015-02-231-1/+1
| | |
* | | Merge pull request #1691 from reaperhulk/buildtimetrendAlex Gaynor2015-02-231-0/+2
|\ \ \ | | | | | | | | add a webhook for buildtimetrend.herokuapp.com to check it out
| * | | add a webhook for buildtimetrend.herokuapp.com to check it outPaul Kehrer2015-02-231-0/+2
| |/ /
* | | Merge pull request #1690 from alex/simplify-travisPaul Kehrer2015-02-221-6/+1
|\ \ \ | | | | | | | | Simplified the travis install script
| * | | Simplified the travis install scriptAlex Gaynor2015-02-221-6/+1
|/ / /
* | | Merge pull request #1687 from reaperhulk/update-freebsd-ossl-versionAlex Gaynor2015-02-211-1/+1
|\ \ \ | |/ / |/| | OpenSSL 1.0.1j-freebsd is what we test against with FreeBSD 10.1
| * | OpenSSL 1.0.1j-freebsd is what we test against with FreeBSD 10.1Paul Kehrer2015-02-211-1/+1
|/ /
* | Merge pull request #1686 from dstufft/use-flatAlex Gaynor2015-02-201-1/+1
|\ \ | | | | | | Use the flat style to match all the other badges
| * | Use the flat style to match all the other badgesDonald Stufft2015-02-201-1/+1
|/ /
* | Merge pull request #1684 from reaperhulk/remove-freebsd92Alex Gaynor2015-02-202-1/+2
|\ \ | | | | | | we don't test on freebsd 9.x any more
| * | note that we removed freebsd 9.2 from CI in changelogPaul Kehrer2015-02-201-0/+1
| | |
| * | we don't test on freebsd 9.x any morePaul Kehrer2015-02-201-1/+1
| | |
* | | Merge pull request #1683 from alex/only-run-local-testsPaul Kehrer2015-02-201-1/+2
|\ \ \ | |/ / |/| | Tell py.test to only run the tests from the local tests dir.
| * | Tell py.test to only run the tests from the local tests dir.Alex Gaynor2015-02-201-1/+2
|/ / | | | | | | Right now if you have a virtualenv or something in the same directory it will recurse into it to run tests.
* | Merge pull request #1681 from dstufft/fix-setuppy-testPaul Kehrer2015-02-201-0/+10
|\ \ | | | | | | Pass the sys.path into the subprocess
| * | Pass the sys.path into the subprocessDonald Stufft2015-02-191-0/+10
|/ / | | | | | | | | | | | | | | | | If we're running tests via ``python setup.py test`` in a clean environment then all of our dependencies are going to be installed into either the current directory or the .eggs directory. However the subprocess won't know to activate these dependencies, so we'll get it to do so by passing our entire sys.path into the subprocess via the PYTHONPATH environment variable.
* | Merge pull request #1651 from reaperhulk/x509-signature-algorithmAlex Gaynor2015-02-199-8/+194
|\ \ | |/ |/| X509 certificate signature algorithm support
| * surrender to alex's feels and name our constants consistentlyPaul Kehrer2015-02-192-19/+19
| |
| * address review feedback, fix short names for sig alg OIDsPaul Kehrer2015-02-192-33/+29
| |
| * attempt to clarify signature hash algorithm a bit morePaul Kehrer2015-02-161-1/+5
| |
| * try to make this a bit more clearPaul Kehrer2015-02-161-3/+3
| |
| * document vector provenancePaul Kehrer2015-02-141-1/+3
| |
| * refactor obj2txt to be a separate methodPaul Kehrer2015-02-141-15/+11
| |
| * address review feedbackPaul Kehrer2015-02-142-23/+19
| |
| * implement signature_hash_algorithm insteadPaul Kehrer2015-02-146-16/+55
| |
| * add legacy Verisign PCA (MD2) root to vectorsPaul Kehrer2015-02-142-0/+16
| |
| * add changelog entryPaul Kehrer2015-02-141-0/+3
| |
| * add support for signature_algorithm in x509.CertificatePaul Kehrer2015-02-145-0/+134
| |
* | Merge pull request #1680 from alex/simplificationPaul Kehrer2015-02-191-1/+1
|\ \ | | | | | | Simplify x509.Name.get_attributes_for_oid
| * | Simplify x509.Name.get_attributes_for_oidAlex Gaynor2015-02-191-1/+1
|/ /
* | Merge pull request #1679 from reaperhulk/libre-supportAlex Gaynor2015-02-196-15/+65
|\ \ | | | | | | LibreSSL support
| * | move some compression things around for librePaul Kehrer2015-02-191-4/+15
| | |
| * | move COMP_METHOD define and change to typedef for librePaul Kehrer2015-02-191-8/+8
| | |
| * | Update changelog for LibreSSL fixesSteven McDonald2015-02-191-0/+1
| | | | | | | | | | | | | | | This changelog entry represents the previous three commits, which all fix compile- or test-time problems running against LibreSSL.
| * | Allow the OpenSSL version string to begin with LibreSSLSteven McDonald2015-02-191-3/+6
| | | | | | | | | | | | | | | LibreSSL aims to be source-compatible with OpenSSL, so there is no good reason to fail this test simply because the name has changed.
| * | Disable features exclusive to newer OpenSSL when using LibreSSLSteven McDonald2015-02-191-2/+2
| | | | | | | | | | | | | | | Some features added to newer OpenSSL versions are absent in LibreSSL, so don't mark these as present if LIBRESSL_VERSION_NUMBER is defined.
| * | Define COMP_METHOD when building against LibreSSLSteven McDonald2015-02-191-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | LibreSSL no longer uses compression in ssl.h, so the case that was formerly activated by defining OPENSSL_NO_COMP is now the default, and COMP_METHOD isn't defined (it's defined in comp.h, but that's no longer included by ssl.h). In order to make all the type definitions here line up with what's actually in LibreSSL's ssl.h, define COMP_METHOD as void. This definition is still compatible with the later type declaration in ssl.py: typedef ... COMP_METHOD;
| * | conditionally bind cryptodev engine for LibreSSLPaul Kehrer2015-02-191-2/+14
| | |