aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* python3 compatibility is goodPaul Kehrer2014-02-141-1/+1
|
* add egcd and modinv unit testsPaul Kehrer2014-02-141-0/+36
|
* Merge branch 'master' into add-crt-coefficientsPaul Kehrer2014-02-1312-20/+196
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: Also clean up this syntax Fixed a missing word in the RSA docs Fix comments in padding.py to be accurate add versionadded to cast5 A few style nits in the docs add CAST5 support to changelog Changed .... lines to ~~~~ and s/Gnu\/Linux/Linux/ Pypy is not a real word either apparently. Added Pypy note and fixed libffi's "spelling" Added Debian mention, extra missing packages Added a docs section on Linux installation remove some extra linebreaks add cast5 docs Syntax highlight the go code. Be mad Rob Pike. add cbc, cfb, ofb support to CAST5 (aka CAST128) for openssl & cc re-add CAST5 ECB support (OpenSSL & CC backends). fixes #417 Switch this to a warning block Be clear about HKDF's applicability for password storage Conflicts: docs/hazmat/primitives/rsa.rst
| * Merge pull request #611 from alex/rsa-doc-fixesPaul Kehrer2014-02-131-16/+16
| |\ | | | | | | Fixed a missing word in the RSA docs
| | * Also clean up this syntaxAlex Gaynor2014-02-131-7/+7
| | |
| | * Fixed a missing word in the RSA docsAlex Gaynor2014-02-131-10/+10
| | |
| * | Merge pull request #610 from alex/padding-commentsDavid Reid2014-02-131-4/+2
| |\ \ | | |/ | |/| Fix comments in padding.py to be accurate
| | * Fix comments in padding.py to be accurateAlex Gaynor2014-02-131-4/+2
| |/ | | | | | | | | | | This is not in fact O(n ** 2) because ``len(self._buffer)`` is bounded by ``self.block_size``. This means that each ``self._buffer += x`` only copies O(len(x)) bytes, meaning the whole thing is linear.
| * Merge pull request #608 from reaperhulk/cast5-changelogAlex Gaynor2014-02-132-0/+3
| |\ | | | | | | Add CAST5 support to changelog
| | * add versionadded to cast5Paul Kehrer2014-02-131-0/+2
| | |
| | * add CAST5 support to changelogPaul Kehrer2014-02-131-0/+1
| | |
| * | Merge pull request #607 from alex/docs-nitsPaul Kehrer2014-02-131-4/+4
| |\ \ | | | | | | | | A few style nits in the docs
| | * | A few style nits in the docsAlex Gaynor2014-02-131-4/+4
| |/ /
| * | Merge pull request #606 from chrisglass/installation-ubuntuPaul Kehrer2014-02-131-1/+24
| |\ \ | | |/ | |/| Added a docs section on Linux installation
| | * Changed .... lines to ~~~~ and s/Gnu\/Linux/Linux/Chris Glass2014-02-131-6/+6
| | |
| | * Pypy is not a real word either apparently.Chris Glass2014-02-131-1/+1
| | |
| | * Added Pypy note and fixed libffi's "spelling"Chris Glass2014-02-131-2/+2
| | |
| | * Added Debian mention, extra missing packagesChris Glass2014-02-131-8/+13
| | | | | | | | | | | | One tends to forget than not everyone has python-dev installed :)
| | * Added a docs section on Linux installationChris Glass2014-02-131-1/+19
| | | | | | | | | | | | | | | | | | This simply adds a short paragraph on what dependencies are needed on Linux, as well as the command line to install them on Ubuntu (since users of other distributions are more likely to know how to do it).
| * | Merge pull request #604 from reaperhulk/cast5-cbc-and-moreAlex Gaynor2014-02-136-4/+151
| |\ \ | | |/ | |/| CAST5 Support (ECB, CBC, CFB, OFB)
| | * remove some extra linebreaksPaul Kehrer2014-02-121-2/+0
| | |
| | * add cast5 docsPaul Kehrer2014-02-121-0/+11
| | |
| | * add cbc, cfb, ofb support to CAST5 (aka CAST128) for openssl & ccPaul Kehrer2014-02-123-12/+70
| | | | | | | | | | | | fixes #393
| | * re-add CAST5 ECB support (OpenSSL & CC backends). fixes #417Paul Kehrer2014-02-125-3/+83
| | |
| * | Merge pull request #602 from alex/hkdf-docsPaul Kehrer2014-02-121-0/+4
| |\ \ | | | | | | | | Be clear about HKDF's applicability for password storage
| | * | Switch this to a warning blockAlex Gaynor2014-02-121-1/+4
| | | |
| | * | Be clear about HKDF's applicability for password storageAlex Gaynor2014-02-121-0/+1
| | | |
| * | | Merge pull request #603 from alex/syntax-highlightPaul Kehrer2014-02-121-0/+1
| |\ \ \ | | |_|/ | |/| | Syntax highlight the go code. Be mad Rob Pike.
| | * | Syntax highlight the go code. Be mad Rob Pike.Alex Gaynor2014-02-121-0/+1
| |/ /
* | | add the crt coefficients to the interfacePaul Kehrer2014-02-131-0/+21
| | |
* | | expose dmp1, dmq1, iqmp getters on RSAPrivateKeyPaul Kehrer2014-02-133-4/+38
| | |
* | | update constructor docs for rsaPaul Kehrer2014-02-121-7/+8
| | |
* | | add crt coefficients to RSAPrivateKey constructor and update testsPaul Kehrer2014-02-125-31/+196
|/ /
* | Merge pull request #589 from reaperhulk/cast5-bespoke-vectorsDavid Reid2014-02-127-0/+626
|\ \ | |/ |/| CAST5 CBC, OFB, CFB vectors made from the AES MMT test data
| * show the entire filesPaul Kehrer2014-02-121-6/+2
| |
| * remove unused varPaul Kehrer2014-02-121-1/+0
| |
| * improve formatting and fix pep8 for generate/verify cast5 scriptsPaul Kehrer2014-02-122-107/+109
| |
| * add cast5 (cbc, cfb, ofb) vector source info to docsPaul Kehrer2014-02-124-0/+256
| |
| * update headers for the CAST5 vectorsPaul Kehrer2014-02-123-0/+3
| |
| * CAST5 CBC, OFB, CFB vectors made from the AES MMT test dataPaul Kehrer2014-02-123-0/+370
|/
* Merge pull request #596 from reaperhulk/docs-test-vectorsAlex Gaynor2014-02-123-1/+71
|\ | | | | Add test vector information to the development section
| * remove references to the CAST5 generation (will be in separate PR)Paul Kehrer2014-02-121-79/+0
| |
| * add test vector information to the development sectionPaul Kehrer2014-02-113-1/+150
| |
* | Merge pull request #601 from dreid/confusing-padding-exampleAlex Gaynor2014-02-121-8/+10
|\ \ | | | | | | Don't throw away the result of padder.update because it confuses users.
| * | Don't throw away the result of finalize either.David Reid2014-02-121-1/+2
| | |
| * | Don't throw away the result of padder.update because it confuses users.David Reid2014-02-121-8/+9
| | |
* | | Merge pull request #600 from alex/multi-rsaDavid Reid2014-02-122-4/+28
|\ \ \ | |/ / |/| | Added RSABackend to MultiBackend
| * | flake8 fixAlex Gaynor2014-02-121-0/+1
| | |
| * | Added RSABackend to MultiBackendAlex Gaynor2014-02-122-4/+27
| | |
* | | Merge pull request #599 from alex/import-sortDavid Reid2014-02-122-3/+3
|\ \ \ | |/ / |/| | Sort our imports