aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use the HTTPS verion of the link to cffiAlex Gaynor2013-12-121-1/+1
|
* Merge pull request #293 from reaperhulk/engine-set-defaultsDavid Reid2013-12-111-0/+12
|\ | | | | add ENGINE set default methods
| * add ENGINE set default methodsPaul Kehrer2013-12-111-0/+12
|/
* Merge pull request #291 from reaperhulk/load-private-key-bindingsAlex Gaynor2013-12-091-0/+9
|\ | | | | add additional bindings to load private keys
| * add additional bindings to load private keysPaul Kehrer2013-12-091-0/+9
|/
* Merge pull request #289 from reaperhulk/bunch-o-bindingsAlex Gaynor2013-12-093-0/+11
|\ | | | | Additional OpenSSL bindings
| * add publickey_dupPaul Kehrer2013-12-091-0/+1
| |
| * add new error constantsPaul Kehrer2013-12-091-0/+7
| |
| * add dec2bnPaul Kehrer2013-12-091-0/+3
| |
* | Merge pull request #288 from alex/more-docsPaul Kehrer2013-12-082-0/+14
|\ \ | |/ |/| Improved the docs -- more glossary entries, more advice for writing docs
| * Improved the docs -- more glossary entries, more advice for writing docsAlex Gaynor2013-12-082-0/+14
|/
* Merge pull request #287 from reaperhulk/rsa-enc-dec-bindingsAlex Gaynor2013-12-071-1/+25
|\ | | | | Expand OpenSSL RSA bindings
| * remove RSA PSS constant (for now), de-opaque RSA *Paul Kehrer2013-12-071-2/+11
| |
| * expand rsa bindingsPaul Kehrer2013-12-061-0/+15
|/
* Merge pull request #286 from alex/code-duplicationPaul Kehrer2013-12-061-43/+16
|\ | | | | Rreduce code duplication
| * Rreduce code duplicationAlex Gaynor2013-12-061-43/+16
| |
* | Merge pull request #285 from reaperhulk/fix-282Alex Gaynor2013-12-066-6/+72
|\ \ | |/ |/| raise ValueErrors when supplying/not supplying tags for GCM
| * update docs to explain tag requirements and valueerrorPaul Kehrer2013-12-062-2/+6
| |
| * raise ValueErrors when supplying/not supplying tags for GCMPaul Kehrer2013-12-044-4/+66
| |
* | Merge pull request #284 from alex/oopsPaul Kehrer2013-12-041-1/+1
|\ \ | | | | | | Don't show so much stuff
| * | Don't show so much stuffAlex Gaynor2013-12-041-1/+1
|/ /
* | Merge pull request #281 from alex/be-more-specificPaul Kehrer2013-12-041-3/+4
|\ \ | |/ |/| Be more specific about when you can trust authentication on GCM
| * Be more specific about when you can trust authentication on GCMAlex Gaynor2013-12-041-3/+4
|/
* Merge pull request #176 from reaperhulk/gcm-supportDavid Reid2013-12-0411-14/+419
|\ | | | | [WIP] GCM support
| * link to NIST GCM PDF where NIST recommends 96-bit IV for perf with GCMPaul Kehrer2013-12-031-5/+7
| | | | | | | | | | Clarify that 96-bit IV is only recommended in performance critical situations...otherwise feel free to use something longer.
| * remove AEADDecryptionContext references from GCM docsPaul Kehrer2013-12-031-12/+5
| |
| * improve language for gcm docsPaul Kehrer2013-12-031-5/+5
| |
| * remove AEADDecryptionContext per review.Paul Kehrer2013-12-033-11/+1
| | | | | | | | | | decryption will return AEADCipherContext and encryption returns AEADEncryptionContext
| * rename ModeWithAAD to ModeWithAuthenticationTagPaul Kehrer2013-12-033-3/+3
| |
| * attempt to document the new interfaces for AEADPaul Kehrer2013-11-291-6/+20
| |
| * create AEADEncryptionContext and DecryptionContextPaul Kehrer2013-11-294-12/+27
| |
| * explicit backend fix for gcm docsPaul Kehrer2013-11-291-2/+2
| |
| * begin adding warnings to GCM modePaul Kehrer2013-11-291-0/+6
| |
| * document tag param for GCM objectPaul Kehrer2013-11-291-0/+3
| |
| * narrow the potential cases where invalidtag can be raisedPaul Kehrer2013-11-291-3/+4
| |
| * make _CipherContext in backend.py compliant with AEADCipherContextPaul Kehrer2013-11-292-1/+6
| | | | | | | | | | | | * Might make more sense to split it into _CipherContext and _AEADCipherContext like we do in base.py, but there would be quite a bit of duplicate code.
| * raise TypeError if you attempt to get the tag attribute on a decryptPaul Kehrer2013-11-293-5/+19
| | | | | | | | | | * To support this the _AEADCipherContext in base.py now needs to be aware of whether it is encrypting/decrypting
| * simplify code for wrapping ciphercontext/aeadciphercontextPaul Kehrer2013-11-291-22/+12
| |
| * rename add_data to authenticate_additional_data for clarity (hopefully)Paul Kehrer2013-11-295-18/+18
| |
| * gcm doc fixes (per review from alex)Paul Kehrer2013-11-291-3/+4
| |
| * invalidtag exception for gcmPaul Kehrer2013-11-293-4/+9
| | | | | | | | | | This exception is probably not safe. It depends on the assumption that if ERR_get_error returns a 0 then it is an AEAD tag error.
| * enforce AEAD add_data before updatePaul Kehrer2013-11-296-14/+33
| |
| * gcm doc improvementsPaul Kehrer2013-11-291-2/+6
| |
| * _AEADCipherContext refactorPaul Kehrer2013-11-292-3/+22
| | | | | | | | | | | | * No longer extends _CipherContext * Remove _tag from _CipherContext * This change duplicates a small amount of code from _CipherContext
| * rename NotFinalized exception to NotYetFinalized because alex is rightPaul Kehrer2013-11-293-6/+6
| | | | | | | | ...it does read better that way
| * add tag as abstractproperty for modewithaadPaul Kehrer2013-11-291-1/+5
| |
| * gcm doc fixesPaul Kehrer2013-11-291-2/+2
| |
| * fix buffer size bug for gcm tag fetchPaul Kehrer2013-11-291-2/+1
| |
| * GCM supportPaul Kehrer2013-11-2911-13/+334
|/
* Merge pull request #279 from alex/spelling-fixPaul Kehrer2013-11-271-1/+1
|\ | | | | Learn how to spell a word