Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #272 from alex/validate-iv | David Reid | 2014-01-03 | 1 | -0/+12 |
|\ | | | | | Validate the IV/nonce length for a given algorithm. | ||||
| * | Merge branch 'master' into validate-iv | Alex Gaynor | 2014-01-02 | 5 | -30/+55 |
| |\ | | | | | | | | | | | | | Conflicts: cryptography/hazmat/primitives/ciphers/modes.py | ||||
| * \ | Merge branch 'master' into validate-iv | Alex Gaynor | 2014-01-01 | 12 | -34/+207 |
| |\ \ | | | | | | | | | | | | | | | | | | | | | Conflicts: tests/hazmat/backends/test_openssl.py tests/hazmat/primitives/test_block.py | ||||
| * \ \ | Merge branch 'master' into validate-iv | Alex Gaynor | 2013-12-15 | 14 | -30/+218 |
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: cryptography/hazmat/primitives/ciphers/modes.py tests/hazmat/primitives/test_block.py | ||||
| * \ \ \ | Merge branch 'master' into validate-iv | Alex Gaynor | 2013-11-27 | 6 | -11/+87 |
| |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: tests/hazmat/primitives/test_block.py | ||||
| * | | | | | Validate the IV/nonce length for a given algorithm. | Alex Gaynor | 2013-11-19 | 1 | -0/+12 |
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes #159 | ||||
* | | | | | | Merge pull request #391 from alex/spelling-fixes | Paul Kehrer | 2014-01-02 | 2 | -4/+7 |
|\ \ \ \ \ \ | | | | | | | | | | | | | | | Correct spelling, fix phrasing, line wrap. | ||||
| * | | | | | | Correct spelling, fix phrasing, line wrap. | Alex Gaynor | 2014-01-02 | 2 | -4/+7 |
| | |_|_|_|/ | |/| | | | | |||||
* / | | | | | Make capitalization in the glossary consistent and sort it | Alex Gaynor | 2014-01-02 | 1 | -1/+2 |
|/ / / / / | |||||
* | | | | | Split OpenSSL binding | Alex Stapleton | 2014-01-01 | 4 | -15/+52 |
| | | | | | |||||
* | | | | | Typo fix | Alex Gaynor | 2014-01-01 | 1 | -1/+1 |
| | | | | | |||||
* | | | | | This page has been subsumed by the index | Alex Gaynor | 2014-01-01 | 2 | -15/+3 |
| |_|_|/ |/| | | | |||||
* | | | | Bump the copyright year | Alex Gaynor | 2014-01-01 | 1 | -1/+1 |
| | | | | |||||
* | | | | Document compiling OpenSSL to avoid conflicts | Alex Stapleton | 2013-12-31 | 1 | -0/+27 |
| | | | | |||||
* | | | | String literals are const char*. | Alex Stapleton | 2013-12-28 | 1 | -6/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | GCC won't whine with -Wall because so much code isn't const correct but writing to a string literal is undefined. -Wwrite-strings is the warning flag to enable to spot these. | ||||
* | | | | Fix docs | Paul Kehrer | 2013-12-27 | 1 | -1/+1 |
| | | | | |||||
* | | | | Convert #defines to explicit type declaration for consistency | Paul Kehrer | 2013-12-27 | 1 | -0/+17 |
| | | | | |||||
* | | | | update style guide docs to reflect change to (void) | Paul Kehrer | 2013-12-27 | 1 | -3/+3 |
| | | | | |||||
* | | | | Remove verify from Hash. | Julian Krause | 2013-12-26 | 1 | -8/+0 |
| | | | | |||||
* | | | | Documentation clarity and grammer fixes. | Julian Krause | 2013-12-26 | 1 | -1/+1 |
| | | | | |||||
* | | | | Merge branch 'master' of https://github.com/pyca/cryptography into verify | Julian Krause | 2013-12-25 | 10 | -24/+117 |
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: tests/hazmat/primitives/test_hashes.py tests/hazmat/primitives/test_hmac.py | ||||
| * | | | | Slightly reorganize and cleanuip the backend docs | Alex Gaynor | 2013-12-24 | 2 | -14/+14 |
| | | | | | |||||
| * | | | | Rephrase | Alex Gaynor | 2013-12-24 | 1 | -2/+3 |
| | | | | | |||||
| * | | | | Typo | Alex Gaynor | 2013-12-24 | 1 | -1/+1 |
| | | | | | |||||
| * | | | | Note abotu development versions | Alex Gaynor | 2013-12-24 | 1 | -0/+2 |
| | | | | | |||||
| * | | | | Forgotten file | Alex Gaynor | 2013-12-24 | 1 | -0/+48 |
| | | | | | |||||
| * | | | | Document our API stability policy. Fixes #312 | Alex Gaynor | 2013-12-24 | 2 | -1/+1 |
| | | | | | |||||
| * | | | | fix erroneous indent and add abstractmethod to HMACBackend | Paul Kehrer | 2013-12-23 | 1 | -2/+2 |
| | | | | | |||||
| * | | | | add hmac_supported method to backend. | Paul Kehrer | 2013-12-23 | 1 | -2/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Previously we were implicitly assuming that if a hash was supported then its hmac equivalent was as well. | ||||
| * | | | | Merge pull request #325 from public/unsupported-cipher-messages | Alex Gaynor | 2013-12-22 | 1 | -1/+1 |
| |\ \ \ \ | | | | | | | | | | | | | UnsupportedAlgorithm error messages for Ciphers | ||||
| | * | | | | UnsupportedAlgorithm error messages for Ciphers | Alex Stapleton | 2013-12-22 | 1 | -1/+1 |
| | | | | | | |||||
| * | | | | | Merge pull request #329 from alex/reccomend-versioning | Paul Kehrer | 2013-12-22 | 1 | -0/+4 |
| |\ \ \ \ \ | | | | | | | | | | | | | | | Recommend that recipes include a version | ||||
| | * | | | | | Recommend that recipes include a version | Alex Gaynor | 2013-12-21 | 1 | -0/+4 |
| | | | | | | | |||||
| * | | | | | | English, how does it work? | Alex Gaynor | 2013-12-21 | 1 | -1/+1 |
| | | | | | | | |||||
| * | | | | | | A handful of cleanups and rewordings to the docs | Alex Gaynor | 2013-12-21 | 1 | -8/+8 |
| |/ / / / / | |||||
| * | | | | | Merge pull request #327 from reaperhulk/gcm-lower-limit-tag | Alex Gaynor | 2013-12-21 | 1 | -0/+11 |
| |\ \ \ \ \ | | | | | | | | | | | | | | | Restrict GCM tag length to 4+ bytes | ||||
| | * | | | | | a few more doc changes to gcm tag info | Paul Kehrer | 2013-12-21 | 1 | -2/+3 |
| | | | | | | | |||||
| | * | | | | | prose updates for GCM tag | Paul Kehrer | 2013-12-21 | 1 | -4/+6 |
| | | | | | | | |||||
| | * | | | | | doc updates | Paul Kehrer | 2013-12-21 | 1 | -2/+5 |
| | | | | | | | |||||
| | * | | | | | add note regarding not truncating tags | Paul Kehrer | 2013-12-21 | 1 | -0/+5 |
| | | | | | | | |||||
| * | | | | | | Merge pull request #326 from public/unsupported-hmac-hash | Alex Gaynor | 2013-12-21 | 1 | -0/+2 |
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | | Raise UnsupportedAlgorithm when initing HMACs | ||||
| | * | | | | | Raise UnsupportedAlgorithm when initing HMACs | Alex Stapleton | 2013-12-21 | 1 | -0/+2 |
| | |/ / / / | |||||
| * / / / / | Raise UnsupportedAlgorithm when initing Hash() | Alex Stapleton | 2013-12-21 | 1 | -0/+3 |
| |/ / / / | | | | | | | | | | | | | | | | Instead of just an AssertionError. | ||||
| * | | | | BlockCipherAlgorithm because we should document block_size and ARC4 ↵ | David Reid | 2013-12-17 | 1 | -0/+11 |
| | | | | | | | | | | | | | | | | | | | | shouldn't need block_size = 1. | ||||
* | | | | | Clean up documentation and naming. | Julian Krause | 2013-12-25 | 3 | -6/+14 |
| | | | | | |||||
* | | | | | Add verify function to hmac and hashes. | Julian Krause | 2013-12-17 | 2 | -0/+14 |
|/ / / / | |||||
* | | | | A foolish consistency is a really cool idea -- Samuel Clemens | Alex Gaynor | 2013-12-16 | 1 | -1/+0 |
| | | | | |||||
* | | | | Be consistent | Alex Gaynor | 2013-12-16 | 1 | -2/+2 |
| | | | | |||||
* | | | | DOn't assume people know that contraction | Alex Gaynor | 2013-12-16 | 1 | -2/+2 |
| | | | | |||||
* | | | | Rework the index to give people a better lay of the land | Alex Gaynor | 2013-12-16 | 1 | -6/+29 |
| |_|/ |/| | |