Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Add a message. | David Reid | 2013-11-13 | 1 | -4/+3 | |
| | | | ||||||
* | | | Make HMAC methods raise AlreadyFinalized. | David Reid | 2013-11-13 | 1 | -1/+11 | |
|/ / | ||||||
* | | Merge pull request #253 from dreid/hash-raise-after-finalize | Alex Gaynor | 2013-11-13 | 2 | -1/+12 | |
|\ \ | | | | | | | raise an exception if you try to use a HashContext after finalize is called. | |||||
| * | | Import AlreadyFinalized instead of exceptions. | David Reid | 2013-11-13 | 1 | -3/+3 | |
| | | | ||||||
| * | | raise an exception if you try to use a HashContext after finalize is called. | David Reid | 2013-11-12 | 2 | -1/+12 | |
| | | | ||||||
* | | | Also remove teh ciphers specific class | Alex Gaynor | 2013-11-13 | 2 | -71/+63 | |
| | | | ||||||
* | | | Remove the hash and hmac specific classes, now that the logic is the Context ↵ | Alex Gaynor | 2013-11-13 | 3 | -26/+12 | |
| | | | | | | | | | | | | classes they don't really add value | |||||
* | | | Remove unnecesary slice bounds | Alex Gaynor | 2013-11-12 | 1 | -2/+2 | |
| | | | ||||||
* | | | Merge branch 'master' into hmac-context-from-backend | David Reid | 2013-11-12 | 7 | -61/+58 | |
|\| | | | | | | | | | | | | | | | | | Conflicts: cryptography/hazmat/bindings/openssl/backend.py cryptography/hazmat/primitives/hmac.py | |||||
| * | | Merge pull request #251 from alex/dont-query-openssl | David Reid | 2013-11-12 | 2 | -4/+4 | |
| |\ \ | | | | | | | | | Don't query OpenSSL for block sizes, we already know them | |||||
| | * | | Don't query OpenSSL for block sizes, we already know them | Alex Gaynor | 2013-11-12 | 2 | -4/+4 | |
| | | | | ||||||
| * | | | Drop random support for weird inheritance | Alex Gaynor | 2013-11-12 | 7 | -23/+9 | |
| |/ / | ||||||
| * | | Reflow Hashes.supported. | David Reid | 2013-11-12 | 1 | -3/+4 | |
| | | | ||||||
| * | | Get a HashContext from the backend like we do a CipherContext | David Reid | 2013-11-12 | 2 | -35/+48 | |
| | | | ||||||
* | | | Don't use self.__class__ | David Reid | 2013-11-12 | 2 | -2/+2 | |
| | | | ||||||
* | | | Get a HashContext from the hmac backend like we do a CipherContext | David Reid | 2013-11-12 | 2 | -34/+57 | |
| | | | ||||||
* | | | Fixed using copied hashes | Alex Gaynor | 2013-11-12 | 1 | -1/+1 | |
|/ / | ||||||
* | | Simple function declarations (no callbacks) | cyli | 2013-11-11 | 1 | -0/+55 | |
| | | ||||||
* | | Handle customizations in another PR as per @alex | cyli | 2013-11-11 | 1 | -25/+0 | |
| | | ||||||
* | | Remove the two declarations that are not in 0.9.8 | cyli | 2013-11-11 | 1 | -2/+0 | |
| | | ||||||
* | | Add all the variable declarations (and customizations necessary to make them ↵ | cyli | 2013-11-11 | 1 | -0/+123 | |
| | | | | | | | | work) for ssl.py | |||||
* | | Merge pull request #214 from reaperhulk/arc4-support | David Reid | 2013-11-09 | 2 | -1/+25 | |
|\ \ | | | | | | | ARC4 Support | |||||
| * | | Merge branch 'master' into arc4-support | Paul Kehrer | 2013-11-08 | 2 | -3/+24 | |
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: Typo Be really explicit about what's good and bad Mention return types. Consistently use e.g. Module documentation. Single space. Add a new Mode interface to document mode.name and start on some prose docs for interfaces. Proper name for the iv thing. Actually note the properties for cipher modes types on their ABCs. Conflicts: docs/hazmat/primitives/symmetric-encryption.rst | |||||
| * | | ARC4 support | Paul Kehrer | 2013-11-07 | 2 | -1/+25 | |
| | | | ||||||
* | | | Fixed two bugs in the PKCS7 padding where unpadding would accept bad inputs. | Alex Gaynor | 2013-11-09 | 1 | -2/+2 | |
| |/ |/| | ||||||
* | | Mention return types. | David Reid | 2013-11-07 | 1 | -2/+2 | |
| | | ||||||
* | | Consistently use e.g. | David Reid | 2013-11-07 | 1 | -2/+2 | |
| | | ||||||
* | | Add a new Mode interface to document mode.name and start on some prose docs ↵ | David Reid | 2013-11-07 | 2 | -0/+13 | |
| | | | | | | | | for interfaces. | |||||
* | | Proper name for the iv thing. | David Reid | 2013-11-06 | 1 | -1/+1 | |
| | | ||||||
* | | Actually note the properties for cipher modes types on their ABCs. | David Reid | 2013-11-06 | 1 | -2/+10 | |
|/ | ||||||
* | Merge pull request #226 from reaperhulk/blockcipher-rename | David Reid | 2013-11-06 | 5 | -10/+14 | |
|\ | | | | | Reorganize Block Cipher | |||||
| * | re-add base.py | Paul Kehrer | 2013-11-06 | 3 | -45/+59 | |
| | | ||||||
| * | rename cipher to algorithm within the Cipher object | Paul Kehrer | 2013-11-06 | 1 | -4/+6 | |
| | | ||||||
| * | block cipher rename | Paul Kehrer | 2013-11-06 | 5 | -60/+48 | |
| | | | | | | | | | | | | * block renamed to ciphers * ciphers renamed to algorithms * base moved into algorithms | |||||
* | | Fixed | Alex Gaynor | 2013-11-05 | 2 | -2/+25 | |
| | | ||||||
* | | flake8 | Alex Gaynor | 2013-11-05 | 1 | -1/+2 | |
| | | ||||||
* | | Handle GCM not beign around | Alex Gaynor | 2013-11-05 | 1 | -3/+12 | |
| | | ||||||
* | | Belongs to last commit | Alex Gaynor | 2013-11-05 | 1 | -1/+1 | |
| | | ||||||
* | | Fixed compatibility for hmac | Alex Gaynor | 2013-11-05 | 2 | -3/+24 | |
| | | ||||||
* | | Fix | Alex Gaynor | 2013-11-05 | 1 | -2/+3 | |
| | | ||||||
* | | Initial stab at fixing the first broken function | Alex Gaynor | 2013-11-05 | 23 | -5/+86 | |
|/ | ||||||
* | Merge branch 'master' into more-error-condition | Alex Gaynor | 2013-11-04 | 1 | -12/+24 | |
|\ | | | | | | | | | Conflicts: tests/hazmat/bindings/test_openssl.py | |||||
| * | Moved the cffi attributes on the OpenSSL backend to be class attributes, so ↵ | Alex Gaynor | 2013-11-04 | 1 | -12/+24 | |
| | | | | | | | | they're shared between all isntances | |||||
* | | Replaced an assertion in the OpenSSL backend with a proper exception | Alex Gaynor | 2013-11-03 | 1 | -1/+3 | |
|/ | ||||||
* | Changed excpetion name based on feedback from dreid | Alex Gaynor | 2013-11-02 | 2 | -3/+3 | |
| | ||||||
* | pep8 | Alex Gaynor | 2013-11-02 | 1 | -0/+1 | |
| | ||||||
* | Document and implement the public API for when the backend doesn't support ↵ | Alex Gaynor | 2013-11-02 | 2 | -3/+22 | |
| | | | | the requested algorithm | |||||
* | Enforce HMAC taking an instance of HashAlgorithm | David Reid | 2013-11-01 | 1 | -0/+2 | |
| | ||||||
* | Remove unused import. | David Reid | 2013-11-01 | 1 | -2/+0 | |
| | ||||||
* | Strip down the HMAC interface to be HashContext. | David Reid | 2013-11-01 | 1 | -21/+13 | |
| |