aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #1195 from public/ec-safety-docsPaul Kehrer2014-07-032-6/+25
|\ | | | | Advice on choosing a curve
| * Advice on choosing a curveAlex Stapleton2014-07-032-6/+25
| |
* | Merge pull request #1211 from Ayrx/use-stdlib-constant-compareAlex Stapleton2014-07-031-3/+13
|\ \ | | | | | | Added preference for stdlib's compare_digest to constant_time
| * | Added preference for stdlib's compare_digest to constant_timeTerry Chia2014-07-031-3/+13
|/ /
* | Merge pull request #1208 from reaperhulk/add-cc-bindingAlex Gaynor2014-07-021-0/+1
|\ \ | | | | | | add a binding that is needed for RSA in security.framework
| * | add a binding that is needed for RSA in security.frameworkPaul Kehrer2014-07-021-0/+1
|/ /
* | Merge pull request #1201 from alex/no-more-truncationPaul Kehrer2014-07-016-19/+37
|\ \ | | | | | | Fixes #1200 -- disallow GCM truncation by default
| * | Simplify code and add testAlex Gaynor2014-06-303-2/+7
| | |
| * | Improve docsAlex Gaynor2014-06-301-6/+8
| | |
| * | Typo fixAlex Gaynor2014-06-291-1/+1
| | |
| * | Fixes #1200 -- disallow GCM truncation by defaultAlex Gaynor2014-06-296-18/+29
| | |
* | | Merge pull request #1207 from reaperhulk/rename-a-methodAlex Gaynor2014-07-013-14/+14
|\ \ \ | | | | | | | | rename a method in the cc backend for clarity
| * | | rename the rest of the methodPaul Kehrer2014-07-011-3/+3
| | | |
| * | | rename a method in the cc backend for clarityPaul Kehrer2014-06-302-11/+11
| | | |
* | | | Merge pull request #1205 from alex/docs-typoLaurens Van Houtven2014-06-301-1/+1
|\ \ \ \ | |/ / / |/| | | Fix a mistake in a docs link
| * | | Fix a mistake in a docs linkAlex Gaynor2014-06-301-1/+1
|/ / /
* | | Merge pull request #1204 from reaperhulk/split-commoncrypto-backend-ciphersAlex Gaynor2014-06-302-170/+194
|\ \ \ | |/ / |/| | split commoncrypto backend - ciphers
| * | split commoncrypto backend - ciphersPaul Kehrer2014-06-292-170/+194
|/ /
* | Merge pull request #1198 from reaperhulk/split-commoncrypto-backend-hmacAlex Gaynor2014-06-292-40/+59
|\ \ | | | | | | split commoncrypto backend - hmac
| * | split commoncrypto backend - hmacPaul Kehrer2014-06-292-40/+59
|/ /
* | Merge pull request #1197 from alex/whoopsPaul Kehrer2014-06-292-16/+16
|\ \ | | | | | | Fixed accidental use of the global backend name
| * | Refactor for cleanlinessAlex Gaynor2014-06-291-16/+14
| | |
| * | CommonCrypto as wellAlex Gaynor2014-06-291-4/+6
| | |
| * | Fixed accidental use of the global backend nameAlex Gaynor2014-06-291-1/+1
| | |
* | | Merge pull request #1196 from reaperhulk/split-commoncrypto-backend-hashesAlex Gaynor2014-06-292-44/+63
|\ \ \ | |/ / |/| | split commoncrypto backend - hashes
| * | split commoncrypto backend - hashesPaul Kehrer2014-06-292-44/+63
|/ /
* | Merge pull request #1194 from public/move-gcPaul Kehrer2014-06-291-9/+4
|\ \ | |/ |/| These functions can do their own GC now
| * These functions can do their own GC nowAlex Stapleton2014-06-291-9/+4
|/
* Merge pull request #1193 from reaperhulk/simplify-some-ec-thingsAlex Stapleton2014-06-292-71/+41
|\ | | | | reorganize OpenSSL EC backend to remove some unneeded indirection
| * reorganize OpenSSL EC backend to remove some unneeded indirectionPaul Kehrer2014-06-282-71/+41
| |
* | Merge pull request #1192 from reaperhulk/move-rsa-encryption-opensslAlex Stapleton2014-06-292-119/+107
|\ \ | | | | | | split OpenSSL RSA enc/dec methods from backend
| * | split OpenSSL RSA enc/dec methods from backendPaul Kehrer2014-06-282-119/+107
| |/
* | Merge pull request #1191 from reaperhulk/dsa-deprecate-backend-methodsAlex Stapleton2014-06-294-0/+40
|\ \ | | | | | | deprecate DSA backend methods
| * | deprecate DSA backend methodsPaul Kehrer2014-06-284-0/+40
| |/
* | Merge pull request #1190 from reaperhulk/dsa-deprecate-concreteAlex Stapleton2014-06-294-120/+176
|\ \ | |/ |/| deprecate concrete DSA classes and update DSA docs
| * deprecate concrete DSA classes and update DSA docsPaul Kehrer2014-06-274-120/+176
|/
* Merge pull request #1189 from reaperhulk/dsa-new-method-multibackendAlex Gaynor2014-06-272-0/+15
|\ | | | | add multibackend support for new DSABackend method
| * add multibackend support for new DSABackend methodPaul Kehrer2014-06-272-0/+15
|/
* Merge pull request #1179 from reaperhulk/dsa-numbers-opaque-backendDavid Reid2014-06-2710-122/+435
|\ | | | | DSA Opaque Keys for OpenSSL
| * rename backend method, add some docsPaul Kehrer2014-06-274-6/+22
| |
| * add generate_private_key to DSAParameters + add a new function to dsaPaul Kehrer2014-06-278-17/+62
| | | | | | | | | | | | | | 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)
| * move where we gc dsa data, improve dsa key checkingPaul Kehrer2014-06-262-23/+29
| |
| * dsa docsPaul Kehrer2014-06-251-0/+37
| |
| * DSA opaque OpenSSLPaul Kehrer2014-06-255-110/+319
| |
* | Merge pull request #1188 from reaperhulk/fix-1167Alex Gaynor2014-06-271-0/+3
|\ \ | | | | | | add note about enchant dependency for spellcheck in docs
| * | add note about enchant dependency for spellcheck in docsPaul Kehrer2014-06-271-0/+3
|/ /
* | Merge pull request #1186 from alex/line-wrapAlex Stapleton2014-06-261-4/+4
|\ \ | | | | | | Wrap a long line (seriously, why is doc8 not catching these)
| * | Wrap a long line (seriously, why is doc8 not catching these)Alex Gaynor2014-06-261-4/+4
|/ /
* | Merge pull request #1184 from reaperhulk/rsa-read-only-keysizeAlex Gaynor2014-06-261-2/+10
|\ \ | | | | | | Make OpenSSL RSA key_size attr read only
| * | Make OpenSSL RSA key_size attr read onlyPaul Kehrer2014-06-251-2/+10
| | |