aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Change nested dictionary literal to match house stylePeter Odding2014-09-291-4/+8
|
* Make sys.argv an argument of keywords_with_side_effects()Peter Odding2014-09-291-4/+7
|
* Work around for side effects in setup.py scriptPeter Odding2014-09-291-8/+33
| | | | | | | Disables setup_requires and related magic for setup.py commands clean, egg_info and sdist and the options --version and --help. See also https://github.com/pyca/cryptography/issues/1253
* Merge pull request #1359 from alex/purge-pypiPaul Kehrer2014-09-291-9/+19
|\ | | | | Refs #1224 -- try to purge PyPI after new tarball is uploaded
| * Added an explanatory comment.Alex Gaynor2014-09-281-0/+3
| |
| * line lengthAlex Gaynor2014-09-261-1/+3
| |
| * Refs #1224 -- try to purge PyPI after new tarball is uploadedAlex Gaynor2014-09-261-9/+14
| | | | | | | | Also reuse an HTTP connection for stuff
* | Merge pull request #1364 from public/remove-curvePaul Kehrer2014-09-283-54/+56
|\ \ | | | | | | Remove the curve parameter from OpenSSL EC keys
| * | Move _ec_key_curve_sn to openssl/ec.pyAlex Stapleton2014-09-283-27/+30
| | |
| * | Rename some ctx vars to ec_cdataAlex Stapleton2014-09-281-16/+16
| | |
| * | Remove curve parameter from OpenSSL EC keysAlex Stapleton2014-09-282-28/+27
| | |
* | | Merge pull request #1365 from reaperhulk/fix-ecnumbers-changelogAlex Gaynor2014-09-281-2/+2
|\ \ \ | |/ / |/| | fix links to ECWithNumbers classes in changelog
| * | fix links to ECWithNumbers classes in changelogPaul Kehrer2014-09-281-2/+2
|/ /
* | Merge pull request #1361 from reaperhulk/more-changelogAlex Gaynor2014-09-271-0/+17
|\ \ | | | | | | more changelog entries from the 0.6 cycle
| * | make it more obvious that the GCM bugs are with the C backendsPaul Kehrer2014-09-271-1/+1
| | |
| * | more changelog entries from the 0.6 cyclePaul Kehrer2014-09-271-0/+17
| | |
* | | Merge pull request #1345 from reaperhulk/ec-withnumbersAlex Gaynor2014-09-275-17/+147
|\ \ \ | | | | | | | | Elliptic Curve WithNumbers Support
| * | | fix invalid dict reference in testPaul Kehrer2014-09-271-1/+1
| | | |
| * | | refactor to use ctx manager and share logic with set_public_key_affinePaul Kehrer2014-09-272-41/+28
| | | |
| * | | fix naming mistake in the docs (for DSA and the new EC docs)Paul Kehrer2014-09-271-2/+2
| | | |
| * | | Support EC WithNumbers on OpenSSL backend + testsPaul Kehrer2014-09-272-2/+93
| | | |
| * | | add EC WithNumbers interfaces and docsPaul Kehrer2014-09-272-0/+52
| | |/ | |/|
* | | Merge pull request #1362 from reaperhulk/add-docs-badgeAlex Gaynor2014-09-271-0/+4
|\ \ \ | | | | | | | | add readthedocs badge
| * | | add readthedocs badgePaul Kehrer2014-09-271-0/+4
| | |/ | |/| | | | | | | fixes #1307
* | | Merge pull request #1360 from alex/missing-from-changelogPaul Kehrer2014-09-271-0/+5
|\ \ \ | |/ / |/| | Added changelog entry for serialization stuff
| * | Added changelog entry for serialization stuffAlex Gaynor2014-09-271-0/+5
|/ /
* | Merge pull request #1348 from reaperhulk/improve-naming-consistencyAlex Gaynor2014-09-279-9/+191
|\ \ | |/ |/| deprecate backend method names for elliptic curve number loading
| * EC public/private key loader functions try deprecated as fallbackPaul Kehrer2014-09-272-2/+29
| |
| * remove duplicate _skip_curve_unsupportedPaul Kehrer2014-09-271-9/+1
| |
| * return from deprecated methodPaul Kehrer2014-09-271-1/+1
| |
| * fix test coverage on multibackend deprecated methodsPaul Kehrer2014-09-271-2/+31
| |
| * multibackend deprecated method needs to call the backend deprecated methodPaul Kehrer2014-09-271-2/+20
| |
| * skip deprecated tests on platforms that don't support ec (old rhel)Paul Kehrer2014-09-271-0/+11
| |
| * deprecate backend method names for elliptic curve number loadingPaul Kehrer2014-09-278-14/+119
|/ | | | fixes #1270
* Merge pull request #1346 from reaperhulk/fix-pkcs8-ec-loadAlex Gaynor2014-09-265-31/+69
|\ | | | | Process curve name when loading EC keys. Fixes #1336
| * use NID_undef instead of literal valuePaul Kehrer2014-09-261-1/+1
| |
| * fix indentationPaul Kehrer2014-09-261-8/+8
| |
| * add curve name parsing to public key loaderPaul Kehrer2014-09-262-15/+21
| |
| * CURVE_TYPES back to private, removed unneeded point creationPaul Kehrer2014-09-263-9/+6
| |
| * learn to pep8Paul Kehrer2014-09-261-0/+1
| |
| * Process curve name when loading EC keys. Fixes #1336Paul Kehrer2014-09-265-28/+62
| |
* | Merge pull request #1357 from alex/rename-bn-cntxPaul Kehrer2014-09-262-4/+4
|\ \ | | | | | | Renamed _bn_ctx_manager().
| * | Renamed _bn_ctx_manager().Alex Gaynor2014-09-262-4/+4
|/ / | | | | | | The existing name is confusing because it's ambigious about the fact that ctx belongs to bn or manager. The name doesn't need to say it's a manager anyways, so now it better describes what it does.
* | Merge pull request #1356 from alex/docs-cleanupPaul Kehrer2014-09-261-2/+2
|\ \ | | | | | | Slight clarification of the load_pem_public_key docs
| * | Slight clarification of the load_pem_public_key docsAlex Gaynor2014-09-261-2/+2
| |/
* | Merge pull request #1355 from reaperhulk/fix-1352Alex Gaynor2014-09-261-6/+12
|\ \ | |/ |/| when setting SSL and SSL_CTX options in tests get current options first
| * test_ssl_mode should get current mode as wellPaul Kehrer2014-09-261-2/+4
| |
| * In tests for setting SSL and SSL_CTX options, get current options firstPaul Kehrer2014-09-261-4/+8
| | | | | | | | Fixes #1352
* | Merge pull request #1331 from michael-hart/public_key_pemPaul Kehrer2014-09-2610-5/+160
|\ \ | |/ |/| Add support for .PEM public keys, with tests and docs
| * Merge branch 'public_key_pem' of ↵michael-hart2014-09-260-0/+0
| |\ | | | | | | | | | https://github.com/michael-hart/cryptography into public_key_pem