aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge pull request #1415 from alex/assert-simplificationPaul Kehrer2014-10-191-4/+2
|\ \ | |/ |/| Split this assert into two.
| * Split this assert into two.Alex Gaynor2014-10-191-4/+2
| | | | | | | | | | | | If these fail, py.test can vomit: https://bitbucket.org/hpk42/pytest/issue/612/syntax-error-on-assertion-reinterpretation (I lost track of what I did to make this asseriton vomit unfortunately :-()
* | remove nids not universally available in all our versionsPaul Kehrer2014-10-191-10/+0
| | | | | | | | will re-add later with additional boilerplate
* | compilation fixesPaul Kehrer2014-10-181-3/+2
| |
* | start adding NIDs we'll need for X509Paul Kehrer2014-10-181-4/+40
|/
* Make FreeBSD happy with this constantAlex Gaynor2014-10-151-1/+1
|
* Also handle the changes in the PKCS1v15 errorsAlex Gaynor2014-10-152-4/+20
|
* Handle PKCS12 decrypt failures with OpenSSL 1.0.1jAlex Gaynor2014-10-152-4/+17
| | | | Don't know why this changed, but it did.
* if EC_KEY_check_key fails consume errors off stack (+ add test)Paul Kehrer2014-10-141-1/+3
|
* Fixed #1392 -- allow more combinations of p and q's bit lengthsAlex Gaynor2014-10-131-11/+4
|
* Improved error messageAlex Gaynor2014-10-081-3/+6
|
* update comment with info re: 0.9.8Paul Kehrer2014-10-031-1/+2
|
* add the missing file. i are senior dvlprPaul Kehrer2014-10-031-0/+35
|
* enable truncation for DSA digests prior to signingPaul Kehrer2014-10-032-18/+22
| | | | | | This works around a bug in OpenSSL 1.0.0, 1.0.0a, and 1.0.0b where SHA-2 is a supported signature algorithm but FIPS 186-3 truncation is not performed if the q value is smaller than the digest output length
* update multibackend to remove deprecated methodsPaul Kehrer2014-10-011-45/+0
|
* Remove DeprecatedIn05Alex Gaynor2014-09-301-1/+0
|
* Merge pull request #1375 from alex/bump-deprecationPaul Kehrer2014-09-301-1/+1
|\ | | | | Bump pending -> deprecated to for things deprecated in 0.6
| * Bump pending -> deprecated to for things deprecated in 0.6Alex Gaynor2014-09-301-1/+1
| |
* | remove deprecated DSA classes/methods and update testsPaul Kehrer2014-09-303-277/+4
|/
* Merge pull request #1371 from reaperhulk/advance-rsa-deprecation-cycleAlex Gaynor2014-09-303-312/+1
|\ | | | | Advance RSA deprecation cycle
| * remove rsa backend methods that are fully deprecated from backendPaul Kehrer2014-09-301-33/+0
| | | | | | | | interface
| * remove unused methodsPaul Kehrer2014-09-291-30/+0
| |
| * Remove deprecated RSA methods from backends, update testsPaul Kehrer2014-09-292-249/+1
| |
* | open master for seventh release developmentPaul Kehrer2014-09-291-1/+1
|/
* Bump version and set changelog date for 0.6 releasePaul Kehrer2014-09-291-1/+1
|
* Move _ec_key_curve_sn to openssl/ec.pyAlex Stapleton2014-09-282-26/+28
|
* 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 #1345 from reaperhulk/ec-withnumbersAlex Gaynor2014-09-273-16/+76
|\ | | | | Elliptic Curve WithNumbers Support
| * refactor to use ctx manager and share logic with set_public_key_affinePaul Kehrer2014-09-272-41/+28
| |
| * Support EC WithNumbers on OpenSSL backend + testsPaul Kehrer2014-09-271-2/+57
| |
| * add EC WithNumbers interfaces and docsPaul Kehrer2014-09-271-0/+18
| |
* | EC public/private key loader functions try deprecated as fallbackPaul Kehrer2014-09-271-2/+8
| |
* | return from deprecated methodPaul Kehrer2014-09-271-1/+1
| |
* | multibackend deprecated method needs to call the backend deprecated methodPaul Kehrer2014-09-271-2/+20
| |
* | deprecate backend method names for elliptic curve number loadingPaul Kehrer2014-09-274-6/+44
|/ | | | fixes #1270
* Merge pull request #1346 from reaperhulk/fix-pkcs8-ec-loadAlex Gaynor2014-09-262-6/+56
|\ | | | | 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-261-15/+19
| |
| * CURVE_TYPES back to private, removed unneeded point creationPaul Kehrer2014-09-262-5/+2
| |
| * Process curve name when loading EC keys. Fixes #1336Paul Kehrer2014-09-262-3/+52
| |
* | 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.
* Update multibackend.pymichael-hart2014-09-261-0/+2
| | | | Inserted missing newlines
* Added code and tests of EC public keysmichael-hart2014-09-261-0/+6
|
* Added all changes lost in merge resetmichael-hart2014-09-261-1/+1
|
* Part 1 of rebase, with corrections for pep8michael-hart2014-09-261-1/+1
|
* Added all changes lost in merge resetmichael-hart2014-09-261-2/+2
|
* Part 1 of rebase, with corrections for pep8michael-hart2014-09-264-2/+48
|
* switch truncate_digest_for_ecdsa to context managerPaul Kehrer2014-09-251-9/+13
| | | | Also adds a docstring to fix #1335