Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | support x448 public/private serialization both raw and pkcs8 (#4653) | Paul Kehrer | 2019-01-13 | 1 | -0/+29 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * support x448 public/private serialization both raw and pkcs8 * add tests for all other asym key types to prevent Raw * more tests * better tests * fix a test * funny story, I'm actually illiterate. * pep8 * require PrivateFormat.Raw or PublicFormat.Raw with Encoding.Raw * missing docs * parametrize * docs fixes * remove dupe line * assert something | ||||
* | Test for expected CryptographyDeprecationWarnings (#4372) | Tim Burke | 2018-07-28 | 1 | -22/+16 |
| | | | | | | | The remaining calls to `signer()` and `verifier()` are exercising the deprecated API intentionally. Let's test that the deprecation warnings are being raised as expected. Closes #4311; see also #4314. | ||||
* | simplify and parametrize DSA tests (#4267) | Paul Kehrer | 2018-05-30 | 1 | -431/+239 |
| | |||||
* | Fixed DSA tests to not emit 200 warnings (#4050) | Alex Gaynor | 2017-12-10 | 1 | -8/+2 |
| | |||||
* | Use a different warning class so users get warnings (#4014) | Alex Gaynor | 2017-11-11 | 1 | -4/+5 |
| | | | | | | | | | | | | * Use a different warning class so users get warnings * fixed tests * do our own warning class * typo * flake8 | ||||
* | Inline calls to bit_length now that it's trivial (#3966) | Alex Gaynor | 2017-10-12 | 1 | -2/+1 |
| | | | | | | | | * Inline calls to bit_length now that it's trivial * unused imports * An comment | ||||
* | deprecate signer/verifier on asymmetric keys (#3663) | Paul Kehrer | 2017-06-03 | 1 | -2/+5 |
| | | | | | | * deprecate signer/verifier on asymmetric keys * review feedback, switch deprecated_call to work around a bug | ||||
* | make signature and verification contexts error better re: prehashed (#3658) | Paul Kehrer | 2017-06-02 | 1 | -0/+12 |
| | | | | | | * make signature and verification contexts error better re: prehashed * code review feedback | ||||
* | support prehashed sign/verify in DSA (#3266) | Paul Kehrer | 2016-11-20 | 1 | -1/+46 |
| | |||||
* | One shot sign/verify DSA (#3003) | Aviv Palivoda | 2016-06-30 | 1 | -0/+20 |
| | | | | | | | | * Add sign and verify methods to DSA * Documented DSA sign/verify methods * Added CHANGELOG entry | ||||
* | added a repr to the dsa numbers classes (#2961) | Alex Gaynor | 2016-06-03 | 1 | -0/+15 |
| | | | | | | | | * added a repr to the dsa numbers classes * fix * another test | ||||
* | SSH serialization for public keys (#2957) | Alex Gaynor | 2016-06-03 | 1 | -0/+23 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * SSH serialization for public keys * name errors ahoy! * id, ego, superego * dsa support * EC support * Don't keyerror * Documentation OpenSSH * flake8 * fix * bytes bytes bytes * skip curve unsupported * bytes! * Move a function * reorganize code for coverage | ||||
* | Un-double the test doubles | Alex Gaynor | 2016-03-05 | 1 | -14/+2 |
| | |||||
* | Write some tests for skip conditions in tests. | Alex Gaynor | 2016-01-10 | 1 | -16/+31 |
| | | | | Without this these branches aren't excersised without 0.9.8, but conceptually they are needed. | ||||
* | Merge pull request #2262 from viraptor/non-bytes-signatures | Paul Kehrer | 2015-08-12 | 1 | -0/+5 |
|\ | | | | | Ensure early exeption on non-bytes signature | ||||
| * | Enforce signature type in ECDSA and add tests | Stanisław Pitucha | 2015-08-12 | 1 | -0/+5 |
| | | | | | | | | | | Ensure that ECDSA signatures are bytes to match RSA/DSA and add tests for all three. | ||||
* | | resolve incorrect docs/naming around DSA (r, s) tuple encode/decode | Paul Kehrer | 2015-08-10 | 1 | -2/+2 |
|/ | |||||
* | require serialization in asym tests | Paul Kehrer | 2015-06-27 | 1 | -52/+23 |
| | |||||
* | DER serialization of DSA private keys | Paul Kehrer | 2015-03-14 | 1 | -24/+86 |
| | |||||
* | Merge pull request #1741 from reaperhulk/serialize-der-public-keys | Alex Gaynor | 2015-03-10 | 1 | -6/+23 |
|\ | | | | | support DER serialization of public keys | ||||
| * | support DER serialization of public keys | Paul Kehrer | 2015-03-10 | 1 | -6/+23 |
| | | |||||
* | | Fixed the deprecation warnings being triggered by the tests | Alex Gaynor | 2015-03-10 | 1 | -2/+2 |
|/ | |||||
* | DSA public key serialization | Paul Kehrer | 2015-03-08 | 1 | -1/+44 |
| | |||||
* | serialize DSA private keys | Paul Kehrer | 2015-03-02 | 1 | -2/+169 |
| | |||||
* | Updated RSA and DSA tests for moved classes | Alex Gaynor | 2015-02-24 | 1 | -4/+4 |
| | |||||
* | add NotImplemented handling | Paul Kehrer | 2014-12-10 | 1 | -0/+3 |
| | |||||
* | add __ne__ and __eq__ methods to RSA, DSA, and EC numbers classes | Paul Kehrer | 2014-12-10 | 1 | -0/+61 |
| | | | | fixes #1449 | ||||
* | add encode_rfc6979_signature and refactor tests to use it | Paul Kehrer | 2014-11-27 | 1 | -3/+6 |
| | |||||
* | Update the license header for every source file, as well as the documentation. | Alex Gaynor | 2014-11-16 | 1 | -13/+3 |
| | | | | Fixes #1209 | ||||
* | Change how we represented that a test requires a backend. | Alex Gaynor | 2014-10-23 | 1 | -3/+4 |
| | | | | This way is more extensible and requires less maintaince | ||||
* | Fixed #1392 -- allow more combinations of p and q's bit lengths | Alex Gaynor | 2014-10-13 | 1 | -99/+0 |
| | |||||
* | remove deprecated DSA classes/methods and update tests | Paul Kehrer | 2014-09-30 | 1 | -517/+449 |
| | |||||
* | deprecate concrete DSA classes and update DSA docs | Paul Kehrer | 2014-06-27 | 1 | -3/+11 |
| | |||||
* | add generate_private_key to DSAParameters + add a new function to dsa | Paul Kehrer | 2014-06-27 | 1 | -2/+11 |
| | | | | | | | dsa.generate_private_key(key_size, backend) will allow you to generate a new DSA key and implicitly generate new parameters. This streamlines the common case and will be an avenue to support future backends that don't allow independent generation of DSAParameters (e.g. CommonCrypto) | ||||
* | DSA opaque OpenSSL | Paul Kehrer | 2014-06-25 | 1 | -22/+50 |
| | |||||
* | modify test_dsa to use DSA*Numbers and split fixtures out | Paul Kehrer | 2014-06-23 | 1 | -276/+177 |
| | |||||
* | remove parameter_numbers from DSAPrivateNumbers since it's on public | Paul Kehrer | 2014-06-23 | 1 | -20/+3 |
| | |||||
* | DSA*Numbers classes | Paul Kehrer | 2014-06-22 | 1 | -0/+77 |
| | |||||
* | add test to cover missed line | Paul Kehrer | 2014-05-01 | 1 | -0/+9 |
| | |||||
* | DSA signing support (this is mostly skeuomorf's work, credit to him) | Paul Kehrer | 2014-05-01 | 1 | -0/+54 |
| | |||||
* | add check to ensure only invalid ASN1 gives InvalidSignature in DSA | Paul Kehrer | 2014-05-01 | 1 | -0/+9 |
| | |||||
* | updates for review feedback | Paul Kehrer | 2014-05-01 | 1 | -2/+5 |
| | |||||
* | move use after finalize to its own test | Paul Kehrer | 2014-05-01 | 1 | -4/+13 |
| | |||||
* | remove hash check in verifier as this isn't a proper restriction | Paul Kehrer | 2014-04-30 | 1 | -25/+0 |
| | |||||
* | restructure some tests, add skip, use der_encode_dsa_signature | Paul Kehrer | 2014-04-30 | 1 | -51/+45 |
| | |||||
* | fix pep8 violation | Paul Kehrer | 2014-04-30 | 1 | -8/+4 |
| | |||||
* | Add verification tests | Mohammed Attia | 2014-04-30 | 1 | -5/+99 |
| | |||||
* | Fix pep8 errors for latest import linter | Alex Stapleton | 2014-04-20 | 1 | -1/+1 |
| | |||||
* | Add DSABackend | Mohammed Attia | 2014-04-04 | 1 | -13/+22 |
| | |||||
* | Add tests for DSA parameters and key generation | Mohammed Attia | 2014-04-03 | 1 | -0/+41 |
| |