aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2617 from reaperhulk/compiler-mingw-why-notAlex Gaynor2016-01-014-14/+29
|\ | | | | don't add the NXCOMPAT and DYNAMICBASE flags if the compiler isn't msvc
| * convert other extra_link_args callsPaul Kehrer2016-01-012-6/+4
| |
| * don't add the NXCOMPAT and DYNAMICBASE flags if the compiler isn't msvcPaul Kehrer2016-01-012-8/+25
| |
* | Merge pull request #2621 from reaperhulk/update-linksAlex Gaynor2016-01-013-4/+4
|\ \ | | | | | | update some links with the redirects shown in the linkchecker
| * | update some links with the redirects shown in the linkcheckerPaul Kehrer2016-01-013-4/+4
| | |
* | | Merge pull request #2618 from reaperhulk/fix-2432Alex Gaynor2016-01-011-2/+4
|\ \ \ | | | | | | | | provide a bit more detail about the underlying public key formats
| * | | provide a bit more detail about the underlying public key formatsPaul Kehrer2015-12-311-2/+4
| | |/ | |/|
* | | Merge pull request #2616 from reaperhulk/docs-accurate-osxAlex Gaynor2016-01-011-3/+3
|\ \ \ | |_|/ |/| | make the os x install docs more accurate
| * | disambiguate a version numberPaul Kehrer2015-12-311-2/+2
| | |
| * | make the os x install docs more accuratePaul Kehrer2015-12-311-3/+3
| |/
* | Merge pull request #2620 from reaperhulk/opt-out-exarkunJean-Paul Calderone2016-01-011-1/+1
|\ \
| * | @exarkun has requested that he be removed from mention-botPaul Kehrer2016-01-011-1/+1
|/ /
* | Merge pull request #2615 from reaperhulk/doc-deprecationsAlex Gaynor2016-01-011-0/+9
|\ \ | | | | | | prominently note our py2.6 and openssl 0.9.8/1.0.0 deprecations
| * | prominently note our py2.6 and openssl 0.9.8/1.0.0 deprecationsPaul Kehrer2015-12-311-0/+9
| |/
* | Merge pull request #2614 from reaperhulk/doc-wheel-cacheAlex Gaynor2016-01-011-0/+6
|\ \ | |/ |/| add a small note about clearing the wheel cache
| * add a small note about clearing the wheel cachePaul Kehrer2015-12-311-0/+6
|/ | | | | | When compiling cryptography yourself if you have a problem and need to recompile but the wheel built successfully you need to know to clear the wheel cache. This is an edge case but worth documenting. Fixes #2006
* Merge pull request #2613 from reaperhulk/warn-on-openssl-lt-101Alex Gaynor2015-12-312-0/+13
|\ | | | | deprecationwarning for OpenSSL < 1.0.1 as upstream has dropped support
| * add changelog entry for 0.9.8/1.0.0 deprecationPaul Kehrer2015-12-311-0/+4
| |
| * deprecationwarning for OpenSSL < 1.0.1 as upstream has dropped supportPaul Kehrer2015-12-311-0/+9
| |
* | Merge pull request #2607 from reaperhulk/unrecognized-extension-support-reduxAlex Gaynor2015-12-315-5/+37
|\ \ | | | | | | support unrecognized extensions in x509
| * | backticksPaul Kehrer2015-12-301-1/+1
| | |
| * | support unrecognized extensions in x509Paul Kehrer2015-12-305-5/+37
| |/
* | Merge pull request #2609 from reaperhulk/extension-for-class-exceptionAlex Gaynor2015-12-302-0/+12
|\ \ | | | | | | don't allow UnrecognizedExtension with get_extension_for_class
| * | don't allow UnrecognizedExtension with get_extension_for_classPaul Kehrer2015-12-302-0/+12
| |/
* | Merge pull request #2608 from alex/serialization-docsPaul Kehrer2015-12-301-5/+31
|\ \ | |/ |/| Better document the return type of serialization load functions
| * Better document the return type of serialization load functionsAlex Gaynor2015-12-301-5/+31
|/
* Merge pull request #2604 from reaperhulk/unrecognized-extension-classAlex Gaynor2015-12-304-1/+111
|\ | | | | add UnrecognizedExtension class
| * language updatePaul Kehrer2015-12-301-1/+1
| |
| * py3 repr will be differentPaul Kehrer2015-12-301-4/+10
| |
| * add UnrecognizedExtension classPaul Kehrer2015-12-304-1/+105
| |
* | Merge pull request #2606 from pyca/alex-patch-1Donald Stufft2015-12-301-1/+1
|\ \ | | | | | | Fixed #2605 -- require setuptools 1.0
| * | Fixed #2605 -- require setuptools 1.0Alex Gaynor2015-12-301-1/+1
|/ / | | | | | | | | | | | | Per @dstufft: - 0.6.28 or something around there that supports wheels - 0.7 is the version that introduced marker support in setuptools - 1.0 is the version where setuptools started using and verifying tls
* | Merge pull request #2603 from reaperhulk/unrecognized-extension-vectorAlex Gaynor2015-12-302-0/+18
|\ \ | | | | | | new unsupported extension x509 test vector
| * | new unsupported extension x509 test vectorPaul Kehrer2015-12-302-0/+18
| |/ | | | | | | see #2288
* | Merge pull request #2601 from alex/get-your-crypto-with-cryptoPaul Kehrer2015-12-282-2/+2
|\ \ | |/ |/| Port a few cr.yp.to links to be HTTPS
| * Port a few cr.yp.to links to be HTTPSAlex Gaynor2015-12-282-2/+2
|/ | | | Because researching crypto should probably be secure.
* Merge pull request #2599 from reaperhulk/oaep-fixAlex Gaynor2015-12-283-0/+39
|\ | | | | Handle RSA_R_OAEP_DECODING_ERROR
| * RSA_R_OAEP_DECODING_ERROR is pretty ubiquitousPaul Kehrer2015-12-273-14/+1
| |
| * move testPaul Kehrer2015-12-272-29/+38
| |
| * pep8 fix, rename test, add a comment to explain itPaul Kehrer2015-12-271-2/+6
| |
| * Move private key initialization out of pytest.raises blockChristopher Grebs2015-12-271-1/+3
| |
| * Fix test again and add pytest.raises statementChristopher Grebs2015-12-271-9/+8
| |
| * Fixed test scenario to use different key.Christopher Grebs2015-12-271-2/+2
| |
| * Add simple test that would fail on decryptionChristopher Grebs2015-12-271-0/+23
| |
| * Add support for RSA_R_OAEP_DECODING_ERROR error flag.Christopher Grebs2015-12-273-0/+15
|/
* Merge pull request #2598 from reaperhulk/index-cpAlex Gaynor2015-12-272-0/+13
|\ | | | | support indexing in CertificatePolicies
| * support indexing in CertificatePoliciesPaul Kehrer2015-12-272-0/+13
| |
* | Merge pull request #2597 from reaperhulk/index-cdpAlex Gaynor2015-12-272-0/+29
|\ \ | | | | | | support indexing in CDP
| * | support indexing in CDPPaul Kehrer2015-12-272-0/+29
| |/
* | Merge pull request #2596 from reaperhulk/index-aiaAlex Gaynor2015-12-272-0/+29
|\ \ | |/ |/| support indexing in AIA