aboutsummaryrefslogtreecommitdiffstats
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
...
| * remove confusing explanation about reusing nonce in counter mode docsPaul Kehrer2013-10-171-3/+1
| |
| * update docs to roughly describe many time pad attack & link cbcPaul Kehrer2013-10-171-2/+5
| |
| * AES Counter supportPaul Kehrer2013-10-171-0/+13
| | | | | | | | | | * vectors from RFC 3686 * Documentation for the mode
* | Fixed huge inaccuracies in the docsAlex Gaynor2013-10-161-6/+4
| |
* | Merge branch 'master' into triple-desAlex Gaynor2013-10-166-3/+166
|\| | | | | | | | | | | | | | | | | Also moved most of the tests to the new format except for one which doesn't yet have an obvious translation Conflicts: cryptography/primitives/block/ciphers.py tests/primitives/test_nist.py
| * Camellia block cipher supportPaul Kehrer2013-10-061-0/+9
| | | | | | | | | | | | | | | | * Tests for CBC, OFB, CFB, and ECB * Tests will be automatically skipped if camellia support is not present in your OpenSSL library (e.g. OS X 10.8 with default OpenSSL) * Test for unsupported cipher in create_block_cipher_context * Docs for the cipher
| * This is a comment, not a command run in a root shellAlex Gaynor2013-10-061-1/+1
| |
| * Use the right lexer for these examplesAlex Gaynor2013-10-061-4/+4
| |
| * Switch all repositories over to the new locationDonald Stufft2013-10-042-3/+3
| |
| * Fix typo in OpenSSL bindings docsHynek Schlawack2013-10-031-1/+1
| |
| * Reflow some paragraphs in the contributing docsAlex Gaynor2013-10-011-13/+11
| |
| * address dreids review commentsRichard Wall2013-10-011-41/+7
| |
| * Address review comments. Better headings. More documentation build optionsRichard Wall2013-10-011-37/+60
| |
| * add some more linksRichard Wall2013-10-011-8/+13
| |
| * some narrative documentation explaining how to set up a development environmentRichard Wall2013-10-011-0/+81
| |
| * Put a warningAlex Gaynor2013-09-301-0/+7
| |
| * Make the lib and ffi public for the OpenSSL binding and document themAlex Gaynor2013-09-303-0/+31
| |
| * OFB uses an initialization vector instead a nonce.David Reid2013-09-111-6/+8
| |
| * add CFB to documentationPaul Kehrer2013-09-111-0/+13
| |
| * Merge pull request #57 from reaperhulk/ofb-supportDonald Stufft2013-09-101-0/+11
| |\ | | | | | | Output feedback mode support + test vectors (aes)
| | * change OFB iv to nonce to reflect dstufft nomenclature pitchPaul Kehrer2013-09-101-8/+6
| | | | | | | | | | | | | | | | | | * Namely, we should try to call things IV if reuse leaks a small amount of data and nonce if reuse can result in a complete break. This can be somewhat ambiguous, but we'll track in #58
| | * add output feedback mode support + test vectors (aes)Paul Kehrer2013-09-101-0/+13
| | |
| * | Cleaned up the docs for ECBAlex Gaynor2013-09-101-5/+9
| |/
| * remove unneeded init in ECB class, add warning to docs for ECB modePaul Kehrer2013-09-101-0/+1
| |
| * Add ECB class + docs + testsPaul Kehrer2013-09-101-0/+12
| | | | | | | | | | * Slightly refactors test_nist to allow fetching of data that has no IV * Does not modify create_block_cipher_context (next commit)
* | Merge branch 'master' into triple-desAlex Gaynor2013-09-102-0/+81
|\| | | | | | | | | Conflicts: tests/primitives/test_nist.py
| * Captitalize GH properlyAlex Gaynor2013-09-091-2/+2
| |
| * More fully document the contribution process, move most of the details fromAlex Gaynor2013-09-092-0/+81
| | | | | | | | CONTRIBUTING.rst to sphinx.
* | These are capitalizedAlex Gaynor2013-09-091-1/+1
| |
* | Iinital work on 3DES. No tests and no implementation yet.Alex Gaynor2013-09-091-0/+19
|/
* Merge pull request #28 from alex/simple-symmetric-encryptionHynek Schlawack2013-09-071-3/+9
|\ | | | | [WIP] initial implementation of symmetric encryption
| * Test the symmetric encryption doc snippets using doctestDonald Stufft2013-08-121-3/+9
| |
* | Nit for HynekAlex Gaynor2013-08-121-1/+1
| |
* | Also mention that other packages miss python3 supportAlex Gaynor2013-08-121-1/+1
|/
* Use the Sphinx doctest builderDonald Stufft2013-08-111-0/+1
| | | | | This allows us to test our documentation snippets using the standard "doctest" utility.
* Make the example error freeDonald Stufft2013-08-111-1/+1
| | | | | Without padding b"my secret message" is not divisible by AES's block size and thus would throw an error.
* Another issue we're targettingAlex Gaynor2013-08-111-0/+1
|
* English grammarAlex Gaynor2013-08-111-6/+6
|
* Added another item from hynekAlex Gaynor2013-08-111-0/+1
|
* Document that we want AES-GCMAlex Gaynor2013-08-111-0/+1
|
* Better gramarAlex Gaynor2013-08-111-1/+1
|
* Make this a headingAlex Gaynor2013-08-111-1/+2
|
* Better describe why this library exists. Refs #5Alex Gaynor2013-08-111-0/+13
|
* Fixed exampleAlex Gaynor2013-08-101-1/+1
|
* Fully excised padding from the docsAlex Gaynor2013-08-101-4/+4
|
* Removing padding from the encryption APIDonald Stufft2013-08-101-6/+0
| | | | | | | | | | | | | * Padding is fundamentally an operation that occurs prior to encryption to make plaintext suitable. * Even though wether it's regarded is dependent on the mode, it can be used safely regardless. * Moving it out of this API makes the API's simpler and more composable. * Moving it out of this API makes it simpler for backends that don't work exactly like OpenSSL's EVP. * Move it out of this API makes it simpler to include padding that OpenSSL's EVP API doesn't expose.
* Merge pull request #26 from alex/symmetric-encryption-docsDonald Stufft2013-08-083-0/+77
|\ | | | | [WIP] Started trying to document symmetric encryption
| * Typo fixAlex Gaynor2013-08-081-2/+2
| |
| * A padding exampleAlex Gaynor2013-08-081-2/+4
| |
| * This is where padding goesAlex Gaynor2013-08-081-1/+5
| |