aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Aded the 3DES vectors. Refs #51.Alex Gaynor2013-09-0988-0/+48004
|
* Merge pull request #50 from alex/simplify-nist-testsDonald Stufft2013-09-091-150/+31
|\ | | | | Simplified the NIST tests and reduced duplication
| * Simplified the NIST tests and reduced duplicationAlex Gaynor2013-09-091-150/+31
|/
* Merge pull request #49 from reaperhulk/masterAlex Gaynor2013-09-091-0/+1
|\ | | | | Update authors
| * update authorsPaul Kehrer2013-09-091-0/+1
|/
* Merge pull request #48 from reaperhulk/masterAlex Gaynor2013-09-093-1/+23
|\ | | | | Add OpenSSL Version Text Method
| * Update docstring to pass alex8 lintingPaul Kehrer2013-09-092-2/+4
| |
| * openssl_version_text now calls startswith rather than findPaul Kehrer2013-09-091-1/+1
| |
| * Accurate friendly string name example textPaul Kehrer2013-09-091-1/+1
| |
| * ascii decode on openssl_version_text + doc string improvementsPaul Kehrer2013-09-092-2/+12
| |
| * Add method to bindings to get OPENSSL_VERSION_TEXTPaul Kehrer2013-09-092-0/+10
| | | | | | | | | | | | | | * This allows you to check that you're binding against the expected version of OpenSSL * Test is pretty basic (just checks to see that the string starts with OpenSSL)
| * Fix issue mixing %s and format for ValueError in AESPaul Kehrer2013-09-091-1/+1
|/
* Merge pull request #28 from alex/simple-symmetric-encryptionHynek Schlawack2013-09-0713-5/+530
|\ | | | | [WIP] initial implementation of symmetric encryption
| * This isn't a thingAlex Gaynor2013-08-311-1/+0
| |
| * remove this duplicateAlex Gaynor2013-08-311-4/+0
| |
| * put this backAlex Gaynor2013-08-311-1/+1
| |
| * This is a const but raelly a macro or somethingAlex Gaynor2013-08-311-1/+1
| |
| * Removed some dead codeAlex Gaynor2013-08-311-5/+0
| |
| * Replace paths we have no idea how to test with assertsAlex Gaynor2013-08-301-22/+5
| |
| * Merge branch 'simple-symmetric-encryption' of ↵Alex Gaynor2013-08-121-3/+9
| |\ | | | | | | | | | https://github.com/alex/cryptography into simple-symmetric-encryption
| | * Test the symmetric encryption doc snippets using doctestDonald Stufft2013-08-121-3/+9
| | |
| * | Some systems need this headerAlex Gaynor2013-08-121-0/+1
| |/
| * Moved comment to the right place, use integer enumsAlex Gaynor2013-08-121-3/+3
| |
| * Merge branch 'master' into simple-symmetric-encryptionAlex Gaynor2013-08-123-4/+7
| |\
| * \ Merge branch 'master' into simple-symmetric-encryptionDonald Stufft2013-08-1110-15/+156
| |\ \ | | | | | | | | | | | | | | | | Conflicts: setup.py
| * | | Addressed a TODOAlex Gaynor2013-08-111-2/+5
| | | |
| * | | Style fixAlex Gaynor2013-08-111-2/+3
| | | |
| * | | Add mandatory headers to files touched by this branchHynek Schlawack2013-08-118-0/+30
| | | |
| * | | Ciphers should know what size blocks they useDonald Stufft2013-08-101-0/+1
| | | |
| * | | Small note about the purposeDonald Stufft2013-08-101-0/+1
| | | |
| * | | Add a comment to note that disabling padding is desiredDonald Stufft2013-08-101-1/+3
| | | |
| * | | 2.6 compatAlex Gaynor2013-08-101-1/+1
| | | |
| * | | Fixed wrong testAlex Gaynor2013-08-101-1/+1
| | | |
| * | | Ensure that AES gets a proper key sizeDonald Stufft2013-08-102-0/+10
| | | |
| * | | Merge branch 'master' into simple-symmetric-encryptionAlex Gaynor2013-08-101-1/+1
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: docs/primitives/symmetric-encryption.rst
| * \ \ \ Merge branch 'master' into simple-symmetric-encryptionAlex Gaynor2013-08-100-0/+0
| |\ \ \ \
| * | | | | Fixed toxAlex Gaynor2013-08-101-1/+3
| | | | | |
| * | | | | Use an enum for determining BlockCipher operationDonald Stufft2013-08-104-9/+25
| | | | | |
| * | | | | Remove padding from the docs.Alex Gaynor2013-08-101-3/+3
| | | | | |
| * | | | | Be consistentAlex Gaynor2013-08-101-1/+1
| | | | | |
| * | | | | Merge branch 'master' into simple-symmetric-encryptionAlex Gaynor2013-08-100-0/+0
| |\ \ \ \ \
| * | | | | | Remove the padding from the BlockCipher APIDonald Stufft2013-08-104-39/+22
| | | | | | |
| * | | | | | Merge branch 'master' into simple-symmetric-encryptionAlex Gaynor2013-08-101-6/+0
| |\ \ \ \ \ \
| * | | | | | | BlockCiphers should know their own nameDonald Stufft2013-08-102-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We normalize on CIPHER-KEYSIZE-MODE for the block cipher name.
| * | | | | | | Ciphers should know what size their keys areDonald Stufft2013-08-103-1/+34
| | | | | | | |
| * | | | | | | Make flake8 happyDonald Stufft2013-08-103-0/+3
| | | | | | | |
| * | | | | | | Merge branch 'master' into simple-symmetric-encryptionDonald Stufft2013-08-100-0/+0
| |\ \ \ \ \ \ \
| * | | | | | | | Ensure that a BlockCipher can only be used for one operationDonald Stufft2013-08-102-2/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This prevents trying to call encrypt() and then decrypt() on a block cipher. It also enables finalize() to know what type of finalization to call.
| * | | | | | | | Some apache license headers (we need a pyflkaes check for thsi)Alex Gaynor2013-08-108-0/+104
| | | | | | | | |
| * | | | | | | | Removed duplicate tests, added tests + fix for use after finalizeAlex Gaynor2013-08-092-15/+13
| | | | | | | | |