aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography
Commit message (Collapse)AuthorAgeFilesLines
...
* 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-121-2/+3
|\
| * Fix __author__Hynek Schlawack2013-08-121-3/+3
| |
| * Fix spelling of my nameChristian Heimes2013-08-121-1/+2
| |
* | Merge branch 'master' into simple-symmetric-encryptionDonald Stufft2013-08-112-0/+54
|\| | | | | | | | | Conflicts: setup.py
| * Fix the packaging meta-dataDonald Stufft2013-08-112-0/+54
| |
| * Make api poitn to the right objectAlex Gaynor2013-08-101-1/+1
| |
* | 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-115-0/+23
| |
* | 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
| |
* | Ensure that AES gets a proper key sizeDonald Stufft2013-08-101-0/+6
| |
* | Use an enum for determining BlockCipher operationDonald Stufft2013-08-101-5/+12
| |
* | Remove the padding from the BlockCipher APIDonald Stufft2013-08-102-18/+1
| |
* | BlockCiphers should know their own nameDonald Stufft2013-08-101-0/+6
| | | | | | | | We normalize on CIPHER-KEYSIZE-MODE for the block cipher name.
* | Ciphers should know what size their keys areDonald Stufft2013-08-102-1/+5
| |
* | Make flake8 happyDonald Stufft2013-08-103-0/+3
| |
* | Ensure that a BlockCipher can only be used for one operationDonald Stufft2013-08-101-2/+15
| | | | | | | | | | | | 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-104-0/+52
| |
* | Removed duplicate tests, added tests + fix for use after finalizeAlex Gaynor2013-08-091-0/+4
| |
* | Address a review noteAlex Gaynor2013-08-091-1/+1
| |
* | Get stuff working on py3k for realAlex Gaynor2013-08-092-4/+15
| |
* | Steps to get this running on py32 and py33 againAlex Gaynor2013-08-091-2/+2
| |
* | Compute the cipher name slightly (only slightly) betterAlex Gaynor2013-08-093-2/+6
| |
* | More TODOsAlex Gaynor2013-08-092-1/+3
| |
* | Start playing with getting useful errors. We need unit tests for all theseAlex Gaynor2013-08-091-10/+18
| | | | | | | | lines
* | Clear the sensitive dataAlex Gaynor2013-08-091-0/+6
| |
* | Another TODOAlex Gaynor2013-08-091-0/+1
| |
* | Many TODOs later, we can encrypt a thingAlex Gaynor2013-08-093-3/+74
| |
* | Started stubbing stuff out, including a simple test, now is the part where weAlex Gaynor2013-08-086-0/+25
|/ | | | write some actual cryptographic software. So yeah.
* Refactor into latest design decisionHynek Schlawack2013-08-083-2/+4
| | | | | C is an implementation detail of the wrapper API, so we go with 'bindings'. Also create/fix some namespaces.
* Less code, more tests.Alex Gaynor2013-08-071-127/+0
|
* Removed a forgotten fileAlex Gaynor2013-08-071-56/+0
|
* Removed most of the C files. We'll add them back as needed.Alex Gaynor2013-08-0718-943/+0
|
* Removed some commented out entriesAlex Gaynor2013-08-074-28/+0
|
* Added an empty __init__Alex Gaynor2013-08-071-0/+0
|
* Added license headersAlex Gaynor2013-08-0620-0/+260
|
* Initial commit. Migrates over basic project files, and the OpenSSL bindingsAlex Gaynor2013-08-0620-0/+932
from OpenTLS.