aboutsummaryrefslogtreecommitdiffstats
path: root/docs/hazmat/primitives/symmetric-encryption.rst
Commit message (Collapse)AuthorAgeFilesLines
* Update NIST urls in docs (#3418)Alex Gaynor2017-02-271-1/+1
|
* add support for update_into on CipherContext (#3190)Paul Kehrer2017-02-161-0/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * add support for update_into on CipherContext This allows you to provide your own buffer (like recv_into) to improve performance when repeatedly calling encrypt/decrypt on large payloads. * another skip_if * more skip_if complexity * maybe do this right * correct number of args * coverage for the coverage gods * add a cffi minimum test tox target and travis builder This tests against macOS so we capture some commoncrypto branches * extra arg * need to actually install py35 * fix * coverage for GCM decrypt in CC * no longer relevant * 1.8 now * pep8 * dramatically simplify * update docs * remove unneeded test * changelog entry * test improvements * coverage fix * add some comments to example * move the comments to their own line * fix and move comment
* Last pass over fixing the links (#3224)Alex Gaynor2016-11-061-1/+1
|
* Fix typo in `symmetric-encryption.rst` (#3138)Alex Chan2016-09-041-1/+1
|
* Remove provider language from docs (#3072)Gabriel Orisaka2016-07-311-6/+6
|
* HTTPS some links, in the odd event users of a cryptographic library would ↵Alex Gaynor2016-03-061-1/+1
| | | | care about authentication, integrity, or confidentiality
* Clearly document that this is a good exampleAlex Gaynor2016-02-101-0/+3
|
* Docs for CTR and GCM should say that IV/nonce must be uniqueEeshan Garg2015-05-201-7/+6
|
* Fixed links in the docsAlex Gaynor2015-02-241-2/+1
|
* Fixed a syntax error in the docsAlex Gaynor2015-02-241-1/+1
|
* Use HTTPS for a few URLs in the docs that support itAlex Gaynor2015-02-171-1/+1
|
* Fixed a link that the EFF movedAlex Gaynor2015-02-171-1/+1
|
* Fixed URL in the docsAlex Gaynor2015-02-161-1/+1
|
* export interfaces from base in ciphers, update docsPaul Kehrer2015-02-141-6/+6
|
* fix docs linksPaul Kehrer2015-02-131-2/+2
|
* move paddingPaul Kehrer2015-02-131-0/+12
|
* move cipher and mode interfacesPaul Kehrer2015-02-131-6/+92
|
* make our docs job nitpicky and fix every broken linkPaul Kehrer2015-02-121-2/+3
|
* IV should be 16 bytesGregory Haynes2015-01-031-1/+1
|
* iv should be 32 bytesGregory Haynes2015-01-031-1/+1
|
* Assign iv to var and remove testsetup blockGregory Haynes2015-01-031-8/+3
|
* Make the symmetric-enc example an exampleGregory Haynes2014-12-301-1/+3
| | | | | Making some minor tweaks to the doc example for symmetric encryption so it is an actual, runable example.
* Anywhere we tell someone to randomly generate something, link the RNG docs. ↵Alex Gaynor2014-12-191-30/+34
| | | | Fixes #1559
* Use HTTPS for a number of URLs in the docsAlex Gaynor2014-12-121-1/+1
|
* Improve docsAlex Gaynor2014-06-301-6/+8
|
* Fixes #1200 -- disallow GCM truncation by defaultAlex Gaynor2014-06-291-9/+12
|
* Use the short link version for various thingsAlex Gaynor2014-06-251-3/+3
|
* Fixed a few typosAlex Gaynor2014-06-101-1/+1
|
* Word wrap some long lines in teh docsAlex Gaynor2014-05-171-2/+2
|
* add some docs and changelogPaul Kehrer2014-05-151-0/+13
|
* Use bold instead of italicsPaul Kehrer2014-05-091-1/+1
|
* Fix some typos in the docsAlex Stapleton2014-05-021-2/+2
|
* Use the short name in the docsAlex Gaynor2014-04-291-1/+1
|
* Added CMAC docsAyrx2014-04-221-2/+2
|
* add SEED docs, tests, small fixesPaul Kehrer2014-04-091-1/+12
|
* Fixed #809 -- switch back to always using UnsupportedAlgorithmAlex Gaynor2014-03-271-3/+3
|
* Standardise on sentence case for titlesAlex Stapleton2014-03-181-3/+3
|
* Added backend check to cipher primitivesAyrx2014-03-161-0/+4
|
* add IDEA support for CBC, CFB, OFB + tests for all IDEAPaul Kehrer2014-03-111-2/+2
|
* basic IDEA ECB support for OpenSSL backendPaul Kehrer2014-03-111-0/+12
|
* Various "improvements" to the symmetric docsAlex Stapleton2014-03-101-80/+86
|
* Convert stuffAlex Gaynor2014-03-061-2/+2
|
* Re-linewrap the symmetric encryption doc sourceAlex Gaynor2014-02-251-53/+35
|
* add versionadded to cast5Paul Kehrer2014-02-131-0/+2
|
* remove some extra linebreaksPaul Kehrer2014-02-121-2/+0
|
* add cast5 docsPaul Kehrer2014-02-121-0/+11
|
* Rephrase for additional clairytAlex Gaynor2014-02-061-12/+12
|
* Verify the tag len for GCMAlex Gaynor2014-01-121-0/+5
|
* add padding info to docsPaul Kehrer2014-01-071-2/+14
|
* Merge pull request #418 from reaperhulk/move-contextsDavid Reid2014-01-071-73/+83
|\ | | | | Move ciphercontext/aeadciphercontext to bottom of symmetric encryption