Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added support for padding ANSI X.923 | Cédric Krier | 2016-02-27 | 1 | -0/+48 |
| | |||||
* | Actually allocate a buffer that is the correct size. | Tristan Seligmann | 2016-02-08 | 1 | -2/+3 |
| | |||||
* | support rsa key generation testing when key is not serializable | Paul Kehrer | 2016-01-30 | 1 | -1/+10 |
| | |||||
* | Write some tests for skip conditions in tests. | Alex Gaynor | 2016-01-10 | 3 | -25/+63 |
| | | | | Without this these branches aren't excersised without 0.9.8, but conceptually they are needed. | ||||
* | give a real EVP_PKEY with an invalid default key type to the test | Paul Kehrer | 2016-01-07 | 1 | -2/+0 |
| | |||||
* | opaque EVP_PKEY since EVP_PKEY_id exists | Paul Kehrer | 2016-01-07 | 1 | -1/+1 |
| | |||||
* | move test | Paul Kehrer | 2015-12-27 | 2 | -29/+38 |
| | |||||
* | pep8 fix, rename test, add a comment to explain it | Paul Kehrer | 2015-12-27 | 1 | -2/+6 |
| | |||||
* | Move private key initialization out of pytest.raises block | Christopher Grebs | 2015-12-27 | 1 | -1/+3 |
| | |||||
* | Fix test again and add pytest.raises statement | Christopher Grebs | 2015-12-27 | 1 | -9/+8 |
| | |||||
* | Fixed test scenario to use different key. | Christopher Grebs | 2015-12-27 | 1 | -2/+2 |
| | |||||
* | Add simple test that would fail on decryption | Christopher Grebs | 2015-12-27 | 1 | -0/+23 |
| | |||||
* | Support EC and DSA signing of CRLs in the OpenSSL backend | Paul Kehrer | 2015-12-27 | 1 | -0/+37 |
| | |||||
* | move two tests to the openssl backend tests where they belong | Paul Kehrer | 2015-12-26 | 1 | -1/+51 |
| | |||||
* | RevokedCertificateBuilder | Paul Kehrer | 2015-12-25 | 1 | -2/+2 |
| | |||||
* | add create_x509_revoked_certificate to x509backend interface | Paul Kehrer | 2015-12-25 | 2 | -0/+12 |
| | |||||
* | Merge pull request #2567 from alex/this-is-america | Paul Kehrer | 2015-12-24 | 1 | -1/+1 |
|\ | | | | | Spell serialization consistently | ||||
| * | Spell serialization consistently | Alex Gaynor | 2015-12-24 | 1 | -1/+1 |
| | | |||||
* | | CertificateRevocationListBuilder | Paul Kehrer | 2015-12-24 | 1 | -3/+6 |
|/ | | | | | RSA keys only. Currently does not support CRL extensions or CRLEntry extensions. | ||||
* | coverage | Paul Kehrer | 2015-12-24 | 1 | -0/+5 |
| | |||||
* | add create_x509_crl interface | Paul Kehrer | 2015-12-24 | 1 | -0/+8 |
| | |||||
* | Change password callback to use userdata pointer | Christian Heimes | 2015-12-20 | 1 | -2/+15 |
| | | | | | | | | | Instead of a closure the pem_password_cb now uses the void *userdata argument to exchange data with the callback function. It's a necessary step to port all callbacks to new static callbacks. See: #2477 Signed-off-by: Christian Heimes <christian@python.org> | ||||
* | use the non-deprecated name for this function | Alex Gaynor | 2015-12-19 | 1 | -3/+3 |
| | |||||
* | Add support for 160 bit ARC4 keys | Ehren Kret | 2015-11-28 | 1 | -0/+1 |
| | |||||
* | Swapping modified x509 test with modified ec test | Peter Hamilton | 2015-10-30 | 1 | -11/+2 |
| | |||||
* | Adding elliptic curve test fixtures | Peter Hamilton | 2015-10-29 | 1 | -0/+296 |
| | | | | This change adds pre-generated elliptic curve keys to be used in elliptic curve tests. | ||||
* | Error cleanly if the public and private keys to an ECDH key exchange are on ↵ | Alex Gaynor | 2015-10-28 | 1 | -1/+27 |
| | | | | different curves | ||||
* | add ellipticcurvepublicnumbers repr | Paul Kehrer | 2015-10-28 | 1 | -0/+5 |
| | |||||
* | address review feedback | Paul Kehrer | 2015-10-28 | 1 | -7/+0 |
| | |||||
* | modify approach to use EllipticCurvePublicNumbers methods | Paul Kehrer | 2015-10-27 | 2 | -73/+76 |
| | |||||
* | remove support for null points, improve docs | Paul Kehrer | 2015-10-27 | 1 | -2/+4 |
| | |||||
* | add support for encoding/decoding elliptic curve points | Paul Kehrer | 2015-10-26 | 1 | -2/+71 |
| | | | | Based on the work of @ronf in #2346. | ||||
* | Merge pull request #2293 from reaperhulk/idempotent-engine-add | Alex Gaynor | 2015-10-24 | 1 | -2/+2 |
|\ | | | | | idempotent engine add | ||||
| * | make engine addition idempotent | Paul Kehrer | 2015-10-21 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | Threading issues keep cropping up. ENGINE_add already acquires a lock at the C layer via CRYPTO_w_lock (provided you have registered the locking callbacks) so let's try to use that. As part of this we'll try to init the openssl locks, but of course there's potentially a race there as well. Clearly this isn't the real fix but it might improve the situation while we try to determine what to do. | ||||
* | | add comments on test cases to explain reasons a bit better | Paul Kehrer | 2015-10-22 | 1 | -0/+5 |
| | | |||||
* | | make skip message more verbose | Paul Kehrer | 2015-10-21 | 1 | -11/+10 |
| | | |||||
* | | AES keywrap support | Paul Kehrer | 2015-10-21 | 1 | -0/+112 |
|/ | |||||
* | Merge branch 'master' into crl_ossl_backend | Erik Trauschke | 2015-10-20 | 3 | -5/+146 |
|\ | |||||
| * | better place for this test | Alex Gaynor | 2015-10-19 | 2 | -7/+16 |
| | | |||||
| * | another test | Alex Gaynor | 2015-10-19 | 1 | -0/+7 |
| | | |||||
| * | removed unused code, and added a test | Alex Gaynor | 2015-10-19 | 1 | -12/+13 |
| | | |||||
| * | be more pro-active in handling invalid keys | Alex Gaynor | 2015-10-18 | 1 | -23/+27 |
| | | |||||
| * | unused | Alex Gaynor | 2015-10-17 | 1 | -6/+0 |
| | | |||||
| * | a refactor to the API | Alex Gaynor | 2015-10-17 | 3 | -76/+59 |
| | | |||||
| * | Add an Elliptic Curve Key Exchange Algorithm(ECDH) | Simo Sorce | 2015-10-17 | 3 | -3/+117 |
| | | | | | | | | | | | | | | | | | | The ECDH Key Exchange algorithm as standardized in NIST publication 800-56A Revision 2 Includes tests with vectors from NIST. Signed-off-by: Simo Sorce <simo@redhat.com> | ||||
| * | Catch Invalid X or Y points and raise a ValueError | Simo Sorce | 2015-10-12 | 1 | -0/+29 |
| | | | | | | | | Signed-off-by: Simo Sorce <simo@redhat.com> | ||||
* | | Merge branch 'master' into crl_ossl_backend | Erik Trauschke | 2015-09-28 | 1 | -19/+1 |
|\| | |||||
| * | Use InternalError for stuff | Alex Gaynor | 2015-09-26 | 1 | -19/+1 |
| | | |||||
* | | Merge branch 'crl_ossl_backend' of github.com:etrauschke/cryptography into ↵ | Erik Trauschke | 2015-09-28 | 1 | -0/+12 |
|\ \ | |/ |/| | | | crl_ossl_backend | ||||
| * | Merge branch 'master' into crl_ossl_backend | Erik Trauschke | 2015-09-25 | 1 | -1/+6 |
| |\ |