Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | deprecate signer/verifier on asymmetric keys (#3663) | Paul Kehrer | 2017-06-03 | 1 | -55/+36 |
| | | | | | | * deprecate signer/verifier on asymmetric keys * review feedback, switch deprecated_call to work around a bug | ||||
* | support prehashed sign/verify in DSA (#3266) | Paul Kehrer | 2016-11-20 | 1 | -2/+12 |
| | |||||
* | Removed provider language from asymmetric primitives docs (#3052) | Gabriel Orisaka | 2016-07-26 | 1 | -51/+36 |
| | | | | | | * Removed provider language from asymmetric primitives docs * Reverted changes to some examples | ||||
* | One shot sign/verification ECDSA (#3029) | Aviv Palivoda | 2016-07-02 | 1 | -1/+1 |
| | | | | | | | | | | | | | | * Add sign and verify methods to ECDSA * Documented ECDSA sign/verify methods * Added CHANGELOG entry * Skipping test verify and sign if curve is not supported * Fixed typo in documentation return type * Removed provider language from EllipticCurvePrivateKey and EllipticCurvePublicKey | ||||
* | one shot verify documentation fix (#3031) | Aviv Palivoda | 2016-06-30 | 1 | -2/+2 |
| | |||||
* | One shot sign/verify DSA (#3003) | Aviv Palivoda | 2016-06-30 | 1 | -0/+53 |
| | | | | | | | | * Add sign and verify methods to DSA * Documented DSA sign/verify methods * Added CHANGELOG entry | ||||
* | Clean up some of the nonsense in our DSA docs. (#2969) | Alex Gaynor | 2016-06-04 | 1 | -5/+5 |
| | | | Fixes #1478 | ||||
* | address review comments | Paul Kehrer | 2015-10-12 | 1 | -2/+4 |
| | |||||
* | add some links to public key loading in the RSA/DSA verification sections | Paul Kehrer | 2015-10-12 | 1 | -2/+6 |
| | |||||
* | Update the docs for the correct RFC in more places | Alex Gaynor | 2015-08-12 | 1 | -2/+2 |
| | |||||
* | resolve incorrect docs/naming around DSA (r, s) tuple encode/decode | Paul Kehrer | 2015-08-10 | 1 | -2/+2 |
| | |||||
* | docs changes based on feedback | Paul Kehrer | 2015-07-04 | 1 | -1/+1 |
| | |||||
* | move PublicKeyWithSerialization methods to PublicKey | Paul Kehrer | 2015-07-04 | 1 | -7/+7 |
| | |||||
* | remove docs for WithNumbers classes that are removed in 1.0 | Paul Kehrer | 2015-07-04 | 1 | -33/+0 |
| | |||||
* | update ecrypt link in docs | Paul Kehrer | 2015-03-30 | 1 | -1/+1 |
| | |||||
* | DSA public key serialization | Paul Kehrer | 2015-03-08 | 1 | -0/+33 |
| | |||||
* | serialize DSA private keys | Paul Kehrer | 2015-03-02 | 1 | -0/+44 |
| | |||||
* | move asymmetric signature/verification interfaces | Paul Kehrer | 2015-02-16 | 1 | -2/+2 |
| | |||||
* | move hash interfaces | Paul Kehrer | 2015-02-13 | 1 | -2/+2 |
| | |||||
* | make our docs job nitpicky and fix every broken link | Paul Kehrer | 2015-02-12 | 1 | -1/+1 |
| | |||||
* | Move DSA* interfaces to interfaces.dsa module | Alex Stapleton | 2015-01-22 | 1 | -11/+166 |
| | |||||
* | Increase the year in some of our docs | Alex Gaynor | 2015-01-08 | 1 | -2/+2 |
| | |||||
* | add decode_rfc6979_signature helper for DSA/ECDSA | Paul Kehrer | 2014-11-27 | 1 | -1/+2 |
| | |||||
* | Describe teh format of the result of signer.finalize(). Fixes #1479 | Alex Gaynor | 2014-11-17 | 1 | -0/+9 |
| | |||||
* | remove deprecated DSA classes/methods and update tests | Paul Kehrer | 2014-09-30 | 1 | -167/+0 |
| | |||||
* | document methods on RSA/DSA Numbers classes | Paul Kehrer | 2014-07-10 | 1 | -0/+30 |
| | |||||
* | Remove merge leftovers | Terry Chia | 2014-07-08 | 1 | -1/+0 |
| | |||||
* | deprecate concrete DSA classes and update DSA docs | Paul Kehrer | 2014-06-27 | 1 | -117/+126 |
| | |||||
* | add generate_private_key to DSAParameters + add a new function to dsa | Paul Kehrer | 2014-06-27 | 1 | -12/+20 |
| | | | | | | | 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 docs | Paul Kehrer | 2014-06-25 | 1 | -0/+37 |
| | |||||
* | fix some language | Paul Kehrer | 2014-06-23 | 1 | -1/+1 |
| | |||||
* | remove parameter_numbers from DSAPrivateNumbers since it's on public | Paul Kehrer | 2014-06-23 | 1 | -8/+1 |
| | |||||
* | DSA*Numbers classes | Paul Kehrer | 2014-06-22 | 1 | -0/+74 |
| | |||||
* | Style guide fix in the docs | Alex Gaynor | 2014-05-03 | 1 | -1/+1 |
| | |||||
* | Fix some typos in the docs | Alex Stapleton | 2014-05-02 | 1 | -5/+5 |
| | |||||
* | convert dsa examples to doctest | Paul Kehrer | 2014-05-02 | 1 | -2/+2 |
| | |||||
* | remove an unneeded line in the example | Paul Kehrer | 2014-05-01 | 1 | -1/+0 |
| | |||||
* | DSA signing support (this is mostly skeuomorf's work, credit to him) | Paul Kehrer | 2014-05-01 | 1 | -0/+43 |
| | |||||
* | updates for review feedback | Paul Kehrer | 2014-05-01 | 1 | -2/+2 |
| | |||||
* | Add DSA verification docs | Mohammed Attia | 2014-04-30 | 1 | -0/+49 |
| | |||||
* | Missing comma, whitespace | Alex Gaynor | 2014-04-07 | 1 | -8/+8 |
| | |||||
* | Add docs for DSA parameters and key generation | Mohammed Attia | 2014-04-04 | 1 | -1/+58 |
| | |||||
* | Add DSA private key api, docs and tests | Mohammed Attia | 2014-03-30 | 1 | -0/+17 |
| | |||||
* | Add DSA public key api, docs and tests | Mohammed Attia | 2014-03-30 | 1 | -0/+22 |
| | |||||
* | Add DSA parameters api, docs and tests | Mohammed Attia | 2014-03-30 | 1 | -0/+29 |