aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use an instruction that is more likely to be constant time on a modern x86 CPUAlex Gaynor2013-11-181-1/+1
|
* This is a static functionAlex Gaynor2013-11-181-1/+1
|
* No more undefined behaviorAlex Gaynor2013-11-181-4/+2
|
* Remove unused includeAlex Gaynor2013-11-181-1/+0
|
* Use types more preciselyAlex Gaynor2013-11-181-7/+7
|
* Make this comment more accurateAlex Gaynor2013-11-181-1/+1
|
* Even more constant timeAlex Gaynor2013-11-181-1/+8
|
* const correctnessAlex Gaynor2013-11-161-2/+2
|
* Fixed flake8 issuesAlex Gaynor2013-11-151-3/+3
|
* Move all unpadding logic to CAlex Gaynor2013-11-151-7/+18
|
* Merge branch 'master' into padding-fixesAlex Gaynor2013-11-096-15/+38
|\ | | | | | | | | Conflicts: cryptography/hazmat/primitives/padding.py
| * Merge pull request #238 from alex/padding-only-fixesHynek Schlawack2013-11-092-2/+4
| |\ | | | | | | Fixed two bugs in the PKCS7 padding where unpadding would accept bad inputs
| | * Fixed two bugs in the PKCS7 padding where unpadding would accept bad inputs.Alex Gaynor2013-11-092-2/+4
| |/
| * Merge pull request #237 from alex/rtd-themeDavid Reid2013-11-083-5/+16
| |\ | | | | | | Try to use the sphinx rtd theme locally if it's installed
| | * Merge branch 'master' into rtd-themeAlex Gaynor2013-11-084-10/+22
| | |\ | | |/ | |/| | | | | | | Conflicts: dev-requirements.txt
| * | Merge pull request #235 from alex/include-all-requiremenstDavid Reid2013-11-082-1/+1
| |\ \ | | | | | | | | Include all the requirements in the dev-requirements, even those which w...
| | * | Do this another wayAlex Gaynor2013-11-081-2/+1
| | | |
| | * | Include all the requirements in the dev-requirements, even those which will ↵Alex Gaynor2013-11-082-1/+2
| | | | | | | | | | | | | | | | be installed by `pip install .`
| * | | Merge pull request #236 from alex/safer-docsDonald Stufft2013-11-082-9/+21
| |\ \ \ | | |/ / | |/| | Be more and more explicit about how to do things correctly
| | * | Be more and more explicit about how to do things correctlyAlex Gaynor2013-11-082-9/+21
| |/ /
| | * Include in tox.iniAlex Gaynor2013-11-081-1/+3
| | |
| | * Put the theme in dev-requirementsAlex Gaynor2013-11-081-0/+1
| | |
| | * Try to use the sphinx rtd theme locally if it's installedAlex Gaynor2013-11-081-4/+12
| |/
* | More constant time, betterAlex Gaynor2013-11-082-6/+2
| |
* | flake8 fixesAlex Gaynor2013-11-071-1/+1
| |
* | py3k fixAlex Gaynor2013-11-071-0/+1
| |
* | Fixed a bug in padding, and also made it more constant timeAlex Gaynor2013-11-072-3/+32
|/
* Merge pull request #231 from dreid/mode-interface-propertiesAlex Gaynor2013-11-075-3/+87
|\ | | | | [WIP] Document mode interfaces.
| * Mention return types.David Reid2013-11-071-2/+2
| |
| * Consistently use e.g.David Reid2013-11-071-2/+2
| |
| * Module documentation.David Reid2013-11-071-1/+1
| |
| * Single space.David Reid2013-11-071-2/+2
| |
| * Add a new Mode interface to document mode.name and start on some prose docs ↵David Reid2013-11-075-0/+76
| | | | | | | | for interfaces.
| * Proper name for the iv thing.David Reid2013-11-061-1/+1
| |
| * Actually note the properties for cipher modes types on their ABCs.David Reid2013-11-061-2/+10
| |
* | Merge pull request #233 from alex/better-cbc-docsHynek Schlawack2013-11-071-3/+23
|\ \ | |/ |/| Clarify correct IV usage
| * TypoAlex Gaynor2013-11-071-1/+1
| |
| * Be really explicit about what's good and badAlex Gaynor2013-11-071-3/+23
|/
* Merge pull request #229 from dreid/dont-silence-apt-failuresAlex Gaynor2013-11-062-9/+29
|\ | | | | Don't silence any failures.
| * Get the package name right.David Reid2013-11-061-1/+1
| |
| * Fix stupid shell syntax error.David Reid2013-11-061-1/+1
| |
| * Use a script so you can write something resembling real code and reason ↵David Reid2013-11-062-9/+29
| | | | | | | | about how it works.
| * Don't silence any failures.David Reid2013-11-061-4/+4
| |
* | Merge pull request #228 from alex/use-sphinx-linkDavid Reid2013-11-061-1/+1
|\ \ | |/ |/| Refer to the sphinx site, rather than the docutils one, for a reST prime...
| * Refer to the sphinx site, rather than the docutils one, for a reST primerAlex Gaynor2013-11-061-1/+1
|/
* Merge pull request #226 from reaperhulk/blockcipher-renameDavid Reid2013-11-0615-81/+86
|\ | | | | Reorganize Block Cipher
| * re-add base.pyPaul Kehrer2013-11-063-45/+59
| |
| * update docsPaul Kehrer2013-11-061-14/+13
| |
| * rename cipher to algorithm within the Cipher objectPaul Kehrer2013-11-061-4/+6
| |
| * block cipher renamePaul Kehrer2013-11-0614-117/+107
| | | | | | | | | | | | * block renamed to ciphers * ciphers renamed to algorithms * base moved into algorithms