aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Reference a comment for thisAlex Gaynor2013-10-291-2/+2
|
* Start of docsAlex Gaynor2013-10-292-0/+45
|
* Merge branch 'master' into pkcs7-paddingAlex Gaynor2013-10-2910-5/+436
|\
| * Merge pull request #157 from reaperhulk/hmacDavid Reid2013-10-2910-5/+436
| |\ | | | | | | HMAC support
| | * update hmac docsPaul Kehrer2013-10-291-4/+5
| | |
| | * fix indentation error and wrapping in docsPaul Kehrer2013-10-281-3/+4
| | |
| | * fix hmac docs to point to new hazmat locationPaul Kehrer2013-10-281-2/+2
| | |
| | * change type of exception raised, fix docs typoPaul Kehrer2013-10-283-3/+3
| | |
| | * make hmac (mostly) compatible with stdlib hmacPaul Kehrer2013-10-284-29/+37
| | |
| | * clean up loader and make docs default to hmac sha256Paul Kehrer2013-10-282-2/+9
| | |
| | * address initial review commentsPaul Kehrer2013-10-282-4/+4
| | |
| | * remove dangling todoPaul Kehrer2013-10-281-2/+0
| | |
| | * cleanup context after finalizingPaul Kehrer2013-10-281-0/+1
| | |
| | * HMAC supportPaul Kehrer2013-10-2810-3/+418
| | | | | | | | | | | | | | | | | | Conflicts: docs/primitives/index.rst tests/hazmat/primitives/utils.py
* | | Initial implementation with tests, docs to followAlex Gaynor2013-10-292-0/+195
|/ /
* | Merge pull request #183 from reaperhulk/xts-vectorsDavid Reid2013-10-284-0/+32052
|\ \ | |/ |/| NIST AES XTS vectors
| * NIST AES XTS vectors.Paul Kehrer2013-10-284-0/+32052
|/ | | | | | | http://csrc.nist.gov/groups/STM/cavp/documents/aes/XTSTestVectors.zip OpenSSL supports the 128-bit hex tweak so that's what we'll be using initially
* Merge pull request #190 from alex/hashes-docsDavid Reid2013-10-281-3/+12
|\ | | | | example of how to use hashes
| * example of how to use hashesAlex Gaynor2013-10-281-3/+12
| |
* | Merge pull request #189 from alex/docs-emphasisHynek Schlawack2013-10-281-2/+2
|\ \ | |/ |/| Emphasize recipes over primitives
| * reorderAlex Gaynor2013-10-281-2/+2
|/
* Merge pull request #188 from dstufft/hazmatAlex Gaynor2013-10-28284-78/+134
|\ | | | | Create a Hazardous Materials Area
| * Hazard -> HazardousDonald Stufft2013-10-281-2/+2
| |
| * Handle the deeper package directoryDonald Stufft2013-10-284-4/+4
| |
| * Move the danger to the very top of the fileDonald Stufft2013-10-285-15/+15
| |
| * Move the module name to it's own variableDonald Stufft2013-10-281-4/+4
| |
| * Warn about dragons and dinosaurs with laser gunsDonald Stufft2013-10-285-4/+32
| |
| * Put recipes firstDonald Stufft2013-10-282-3/+3
| |
| * Move the bindings into the hazmat moduleDonald Stufft2013-10-2836-18/+21
| |
| * Move primtives into a hazmat packageDonald Stufft2013-10-28252-34/+59
|/
* Merge pull request #181 from reaperhulk/error-handlingAlex Gaynor2013-10-271-0/+5
|\ | | | | Add some error parsing macros
| * add some error parsing macrosPaul Kehrer2013-10-261-0/+5
| |
* | Merge pull request #186 from alex/reqsHynek Schlawack2013-10-271-1/+2
|\ \ | | | | | | Update the requirements file for our direct invocations of coverage
| * | Update the requirements file for our direct invocations of coverageAlex Gaynor2013-10-271-1/+2
| |/
* | Merge pull request #185 from alex/linkcheckHynek Schlawack2013-10-271-0/+1
|\ \ | |/ |/| Also linkcheck the docs
| * Also linkcheck the docsAlex Gaynor2013-10-271-0/+1
|/
* Merge pull request #179 from reaperhulk/gcm-vectorsAlex Gaynor2013-10-246-0/+396936
|\ | | | | AES GCM vectors from NIST
| * AES GCM vectors from NISTPaul Kehrer2013-10-246-0/+396936
| | | | | | | | * http://csrc.nist.gov/groups/STM/cavp/documents/mac/gcmtestvectors.zip
* | Merge pull request #178 from dreid/composable-contextsAlex Gaynor2013-10-242-76/+66
|\ \ | |/ |/| [WIP] Reduce the backend's API surface by making it a vendor of implementation specific CipherContext providers.
| * Rename _OneTimeCipherContextDavid Reid2013-10-241-3/+3
| |
| * Don't forget to provide an interface.David Reid2013-10-241-0/+1
| |
| * Initial refactoring of backend specific contexts.David Reid2013-10-242-76/+65
|/
* Merge pull request #177 from dreid/privatize-cyclical-backendDonald Stufft2013-10-241-44/+50
|\ | | | | Give API collections direct references to the backend.
| * Give API collections direct references to the backend.David Reid2013-10-241-44/+50
|/
* Merge pull request #175 from reaperhulk/evp-cipher-methodsAlex Gaynor2013-10-233-44/+25
|\ | | | | [WIP] Simplify Cipher Encryption/Decryption Interfaces in OpenSSL
| * simplify enc/dec in the OpenSSL backend by using the EVP_Cipher* methodsPaul Kehrer2013-10-233-44/+25
|/
* Merge pull request #173 from reaperhulk/split-backendAlex Gaynor2013-10-228-69/+82
|\ | | | | Split backend up (refs #170)
| * split backend up (refs #170)Paul Kehrer2013-10-228-69/+82
| | | | | | | | | | | | | | | | * Moves cipher methods into a Ciphers class and hash methods to a Hashes class and makes them available inside Backend as pluralized attributes. * Shortened many of the methods since their purpose is now defined by their container class
* | Merge pull request #172 from reaperhulk/api-to-backend-in-one-easy-stepAlex Gaynor2013-10-2215-117/+124
|\| | | | | The great api -> backend rename
| * more backend renames from merged commitsPaul Kehrer2013-10-222-9/+9
| |