aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #234 from alex/padding-fixesDavid Reid2013-12-121-9/+51
|\ | | | | Made PKCS7 unpadding more constant time
| * name this function correcctlyAlex Gaynor2013-11-191-3/+3
| |
| * flake8Alex Gaynor2013-11-191-1/+0
| |
| * Constant time comparisons hereAlex Gaynor2013-11-191-2/+2
| |
| * Doh, fixAlex Gaynor2013-11-191-1/+2
| |
| * Even fewer secret branches before the data is validAlex Gaynor2013-11-191-2/+5
| |
| * Use an instruction that is more likely to be constant time on a modern x86 CPUAlex Gaynor2013-11-181-1/+1
| |
| * This is a static functionAlex Gaynor2013-11-181-1/+1
| |
| * No more undefined behaviorAlex Gaynor2013-11-181-4/+2
| |
| * Remove unused includeAlex Gaynor2013-11-181-1/+0
| |
| * Use types more preciselyAlex Gaynor2013-11-181-7/+7
| |
| * Make this comment more accurateAlex Gaynor2013-11-181-1/+1
| |
| * Even more constant timeAlex Gaynor2013-11-181-1/+8
| |
| * const correctnessAlex Gaynor2013-11-161-2/+2
| |
| * Fixed flake8 issuesAlex Gaynor2013-11-151-3/+3
| |
| * Move all unpadding logic to CAlex Gaynor2013-11-151-7/+18
| |
| * Merge branch 'master' into padding-fixesAlex Gaynor2013-11-096-15/+38
| |\ | | | | | | | | | | | | Conflicts: cryptography/hazmat/primitives/padding.py
| * | More constant time, betterAlex Gaynor2013-11-082-6/+2
| | |
| * | flake8 fixesAlex Gaynor2013-11-071-1/+1
| | |
| * | py3k fixAlex Gaynor2013-11-071-0/+1
| | |
| * | Fixed a bug in padding, and also made it more constant timeAlex Gaynor2013-11-072-3/+32
| | |
* | | Merge pull request #296 from reaperhulk/osx-openssl-ughAlex Gaynor2013-12-121-2/+0
|\ \ \ | | | | | | | | remove two ENGINE_set_default_* functions default OS X OpenSSL lacks
| * | | remove two ENGINE_set_default_* functions default OS X OpenSSL lacksPaul Kehrer2013-12-121-2/+0
|/ / /
* | | 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