aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | add ENGINE set default methodsPaul Kehrer2013-12-111-0/+12
| | | |
| * | | add additional bindings to load private keysPaul Kehrer2013-12-091-0/+9
| | | |
| * | | add publickey_dupPaul Kehrer2013-12-091-0/+1
| | | |
| * | | add new error constantsPaul Kehrer2013-12-091-0/+7
| | | |
| * | | add dec2bnPaul Kehrer2013-12-091-0/+3
| | | |
| * | | 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
| | | |/ | | |/|
| * / | raise ValueErrors when supplying/not supplying tags for GCMPaul Kehrer2013-12-041-1/+7
| |/ /
| * | remove AEADDecryptionContext per review.Paul Kehrer2013-12-033-11/+1
| | | | | | | | | | | | | | | decryption will return AEADCipherContext and encryption returns AEADEncryptionContext
| * | rename ModeWithAAD to ModeWithAuthenticationTagPaul Kehrer2013-12-033-3/+3
| | |
| * | create AEADEncryptionContext and DecryptionContextPaul Kehrer2013-11-293-11/+26
| | |
| * | narrow the potential cases where invalidtag can be raisedPaul Kehrer2013-11-291-3/+4
| | |
| * | make _CipherContext in backend.py compliant with AEADCipherContextPaul Kehrer2013-11-292-1/+6
| | | | | | | | | | | | | | | | | | * Might make more sense to split it into _CipherContext and _AEADCipherContext like we do in base.py, but there would be quite a bit of duplicate code.
| * | raise TypeError if you attempt to get the tag attribute on a decryptPaul Kehrer2013-11-291-5/+9
| | | | | | | | | | | | | | | * To support this the _AEADCipherContext in base.py now needs to be aware of whether it is encrypting/decrypting
| * | simplify code for wrapping ciphercontext/aeadciphercontextPaul Kehrer2013-11-291-22/+12
| | |
| * | rename add_data to authenticate_additional_data for clarity (hopefully)Paul Kehrer2013-11-293-5/+5
| | |
| * | invalidtag exception for gcmPaul Kehrer2013-11-292-2/+7
| | | | | | | | | | | | | | | This exception is probably not safe. It depends on the assumption that if ERR_get_error returns a 0 then it is an AEAD tag error.
| * | enforce AEAD add_data before updatePaul Kehrer2013-11-292-1/+11
| | |
| * | _AEADCipherContext refactorPaul Kehrer2013-11-291-3/+18
| | | | | | | | | | | | | | | | | | * No longer extends _CipherContext * Remove _tag from _CipherContext * This change duplicates a small amount of code from _CipherContext
| * | rename NotFinalized exception to NotYetFinalized because alex is rightPaul Kehrer2013-11-292-4/+4
| | | | | | | | | | | | ...it does read better that way
| * | add tag as abstractproperty for modewithaadPaul Kehrer2013-11-291-1/+5
| | |
| * | fix buffer size bug for gcm tag fetchPaul Kehrer2013-11-291-2/+1
| | |
| * | GCM supportPaul Kehrer2013-11-295-8/+118
| | |
* | | Merge branch 'master' into validate-ivAlex Gaynor2013-11-276-18/+44
|\| | | | | | | | | | | | | | Conflicts: tests/hazmat/primitives/test_block.py
| * | Merge pull request #227 from dreid/explicit-backend-in-hazmatAlex Gaynor2013-11-264-17/+7
| |\ \ | | | | | | | | Explicit backend
| | * | Use backend as keyword even when copying hmacs.David Reid2013-11-251-1/+1
| | | |
| | * | Add a default_backend and start updating docs.David Reid2013-11-201-1/+4
| | | |
| | * | Explicit backendDavid Reid2013-11-203-17/+4
| | | |
| * | | Useful error messageAlex Gaynor2013-11-221-2/+8
| | | |
| * | | Change teh exceptionAlex Gaynor2013-11-222-7/+3
| | | |
| * | | CoverageAlex Gaynor2013-11-221-3/+3
| | | |
| * | | include the error messageAlex Gaynor2013-11-221-1/+4
| | | |
| * | | Better, but still not coveredAlex Gaynor2013-11-221-1/+3
| | | |
| * | | Raise a correct error when content isn't padded correctlyAlex Gaynor2013-11-223-2/+31
| |/ /
* | | flake8Alex Gaynor2013-11-191-1/+0
| | |
* | | Implement this for CTRAlex Gaynor2013-11-191-0/+7
| | |
* | | Validate the IV/nonce length for a given algorithm.Alex Gaynor2013-11-193-0/+31
|/ / | | | | | | Fixes #159
* | Some docstrings.David Reid2013-11-181-1/+8
| |
* | Merge branch 'master' into backend-interfacesDavid Reid2013-11-181-1/+4
|\ \
| * | de-opaque EVP_CIPHER_CTX a bitPaul Kehrer2013-11-181-1/+4
| | |
* | | Fix usages of interfaces.registerDavid Reid2013-11-181-6/+7
| | |
* | | Change interface names to fit in the new smaller interface surface andDavid Reid2013-11-182-70/+15
| | | | | | | | | | | | correct method names on interfaces.
* | | flesh out method definitions.David Reid2013-11-181-9/+65
| | |
* | | Move register so it can be used by cryptography.hazmat.bindings.interfaces.David Reid2013-11-189-30/+114
|/ /
* | Simple macroscyli2013-11-171-1/+37
| |
* | Implement and document an interface for cipher algorithmsDavid Reid2013-11-153-0/+25
| |
* | Merge pull request #258 from alex/already-finalizedDavid Reid2013-11-132-4/+7
|\ \ | | | | | | Use AlreadyFinalized for symmetric ciphers
| * | Use AlreadyFinalized for symmetric ciphersAlex Gaynor2013-11-132-4/+7
| | |