summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1629 from reaperhulk/0.7.2-changelog0.7.20.7.xAlex Gaynor2015-01-163-2/+11
|\ | | | | update versions to 0.7.2 + changelog
| * update versions to 0.7.2 + changelogPaul Kehrer2015-01-163-2/+11
| |
* | Merge pull request #1628 from reaperhulk/0.7.2-backport-bindingAlex Gaynor2015-01-151-0/+1
|\ \ | | | | | | [backport 0.7.2] Add support for querying the negotiated TLS/SSL version.
| * | Add support for querying the negotiated TLS/SSL version.Richard J. Moore2015-01-151-0/+1
|/ /
* | Merge pull request #1627 from reaperhulk/0.7.2-backport-enum34-changeAlex Gaynor2015-01-151-1/+3
|\ \ | |/ |/| [0.7.2 backport] make enum34 installation conditional on python < 3.4
| * make enum34 installation conditional on python < 3.4Paul Kehrer2015-01-151-1/+3
|/
* Merge pull request #1588 from reaperhulk/update-0.7.1-changelog0.7.1Alex Gaynor2014-12-283-2/+8
|\ | | | | add changelog entry for 0.7.1 and update versions
| * add changelog entry for 0.7.1 and update versionsPaul Kehrer2014-12-283-2/+8
| |
* | Merge pull request #1587 from reaperhulk/backport-no-ssl3-fixAlex Gaynor2014-12-281-5/+5
|\ \ | |/ |/| backport OPENSSL_NO_SSL3 change to 0.7.x branch
| * Revert "Fixed #1494 -- switch which define we look for for SSLv3 disabled. ↵Paul Kehrer2014-12-281-5/+5
|/ | | | | | We're now using the same one as CPython." This reverts commit facea9a7861ac1ecc7948474766cae0f842b3469.
* Merge pull request #1540 from reaperhulk/update-changelog-0.70.7Alex Gaynor2014-12-173-8/+6
|\ | | | | 0.7 changelog and version bump
| * 0.7 changelog and version bumpPaul Kehrer2014-12-173-8/+6
| |
* | Merge pull request #1538 from reaperhulk/named-curveAlex Gaynor2014-12-171-0/+14
|\ \ | | | | | | Set OPENSSL_EC_NAMED_CURVE on our EC_KEY instances
| * | british english? never heard of it.Paul Kehrer2014-12-171-2/+2
| | |
| * | mark named curve inside EC key classesPaul Kehrer2014-12-172-19/+14
| | |
| * | _backend is not a property on a backendPaul Kehrer2014-12-171-2/+1
| | |
| * | Set OPENSSL_EC_NAMED_CURVE on our EC_KEY instancesAlex Stapleton2014-12-172-0/+20
| | | | | | | | | | | | | | | This means any X.509 certs generated from our keys will be encoded along with the curve OID so that we can still load them afterwards.
* | | Merge pull request #1539 from reaperhulk/move-ec-named-curve-checkAlex Gaynor2014-12-172-20/+7
|\ \ \ | |_|/ |/| | move the NID_undef check for EC named curve
| * | move the NID_undef check for EC named curvePaul Kehrer2014-12-172-20/+7
| |/
* | Merge pull request #1537 from alex/cleanup-ssh-serializationPaul Kehrer2014-12-171-2/+2
|\ \ | |/ |/| Use the slightly more natural API here
| * Use the slightly more natural API hereAlex Gaynor2014-12-171-2/+2
| |
* | Merge pull request #1499 from reaperhulk/x509-ossl-implAlex Gaynor2014-12-1711-55/+682
|\ \ | |/ |/| X509Backend support in OpenSSL backend
| * doc update for x509Paul Kehrer2014-12-171-1/+3
| |
| * Merge pull request #2 from alex/patch-1Paul Kehrer2014-12-161-2/+3
| |\ | | | | | | Slight cleanup to teh docs
| | * Markup fix.Alex Gaynor2014-12-161-1/+2
| | |
| | * Slightly more descriptive docsAlex Gaynor2014-12-161-2/+2
| |/
| * fix some docsPaul Kehrer2014-12-161-5/+5
| |
| * add examples for accessing each attrPaul Kehrer2014-12-161-2/+35
| |
| * add parsed_version attribute to InvalidVersionPaul Kehrer2014-12-154-3/+11
| |
| * update error msg text based on feedbackPaul Kehrer2014-12-151-1/+1
| |
| * revert asn1 time parsing to avoid locale problemsPaul Kehrer2014-12-151-5/+14
| |
| * improve the docs a bit morePaul Kehrer2014-12-151-2/+5
| |
| * rename X509 classes to remove X509 and improve some testsPaul Kehrer2014-12-156-37/+96
| |
| * update test with proper filenamePaul Kehrer2014-12-151-1/+1
| |
| * sighPaul Kehrer2014-12-152-2/+2
| |
| * raise error on unnamed EC curve certificates when calling public_keyPaul Kehrer2014-12-152-0/+30
| | | | | | | | ...for now
| * move to macros due to const/non-constPaul Kehrer2014-12-151-1/+1
| |
| * try using ASN1_TIME_print to get ASN1_TIME dataPaul Kehrer2014-12-152-14/+6
| |
| * simplify serial conversionPaul Kehrer2014-12-151-3/+2
| |
| * reorganize a bunch of things related to the x509certificate interfacePaul Kehrer2014-12-156-63/+104
| |
| * move mem_bio creation/reading to backendPaul Kehrer2014-12-152-18/+24
| |
| * change it to not_valid_* why notPaul Kehrer2014-12-154-20/+24
| |
| * improve phrasing on X509Certificate fingerprint method paramPaul Kehrer2014-12-151-2/+2
| |
| * move x509 to the top of our docsPaul Kehrer2014-12-151-1/+1
| |
| * refactor a test function to avoid string typingPaul Kehrer2014-12-151-18/+13
| |
| * learn to bytesPaul Kehrer2014-12-151-1/+1
| |
| * test x509 fingerprintPaul Kehrer2014-12-151-1/+4
| |
| * py3 fixesPaul Kehrer2014-12-152-49/+62
| |
| * address review feedbackPaul Kehrer2014-12-156-17/+15
| |
| * clean up x509 tests & add DSA/ECDSA testsPaul Kehrer2014-12-151-15/+57
| |