summaryrefslogtreecommitdiff
path: root/OpenSSL/crypto.py
Commit message (Collapse)AuthorAgeFilesLines
* Move package into srcHynek Schlawack2015-10-171-2741/+0
| | | | Prevents accidental imports when running tests.
* Fixed mismatched parameter documentationAlex Gaynor2015-09-201-2/+2
|
* fix docstring typesMaximilian Hils2015-09-181-3/+3
|
* fixAlex Gaynor2015-09-051-1/+1
|
* check the result hereAlex Gaynor2015-09-051-1/+1
|
* flake8 crypto.pyAlex Gaynor2015-09-051-35/+71
|
* flake8 a bunch of stuffAlex Gaynor2015-09-051-144/+19
|
* cleanup suggested by @reaperhulkAlex Gaynor2015-09-051-3/+0
|
* Merge branch 'master' into alex-patch-2Alex Gaynor2015-09-051-3/+3
|\
| * a random set of flake8 and typo fixesAlex Gaynor2015-09-041-3/+3
| |
* | Fixed #322 -- removed code that already exists in cryptographyAlex Gaynor2015-09-041-28/+2
|/
* Removed some semi-colonsAlex Gaynor2015-09-041-2/+2
|
* Clean up X509StoreContext documentationStephen Holsapple2015-06-101-12/+21
| | | | | | | This change cleans up the X509StoreContext and X509StoreContextError documentation to be more aligned with the other documentation. Tested using ``tox -e docs``.
* Merge pull request #126 from lvh/autodocHynek Schlawack2015-05-061-201/+405
|\ | | | | Merge API documentation in Sphinx with docstrings
| * How do you even grammarLaurens Van Houtven2015-04-231-1/+1
| |
| * Fix markupLaurens Van Houtven2015-04-231-1/+1
| | | | | | | | Thanks, @hynek!
| * Fix markupLaurens Van Houtven2015-04-231-1/+1
| | | | | | | | Thanks, @hynek!
| * Fix markupLaurens Van Houtven2015-04-231-1/+1
| | | | | | | | Thanks, @hynek!
| * Consistency between all three sign methodsLaurens Van Houtven2015-04-231-2/+2
| |
| * Fix markupLaurens Van Houtven2015-04-231-1/+1
| | | | | | | | Thanks, @hynek!
| * Merge branch 'master' into autodocLaurens Van Houtven2015-04-201-9/+164
| |\
| * | Use autodoc for CRLLaurens Van Houtven2014-06-191-11/+23
| | | | | | | | | | | | Closes #125.
| * | Use autodoc for RevokedLaurens Van Houtven2014-06-191-21/+41
| | |
| * | Use autodoc for NetscapeSPKILaurens Van Houtven2014-06-191-10/+27
| | | | | | | | | | | | | | | | | | This uncovered an issue in the documentation. Issue filed: Refs #124.
| * | Use :py:const:`None` consistentlyLaurens Van Houtven2014-06-191-30/+30
| | |
| * | Use autodoc for PKCS12Laurens Van Houtven2014-06-191-25/+44
| | |
| * | Use autodoc for X509Laurens Van Houtven2014-06-181-88/+130
| | |
| * | Use autodoc for X509ReqLaurens Van Houtven2014-06-181-24/+44
| | |
| * | Use autodoc for X509ExtensionLaurens Van Houtven2014-06-181-10/+29
| | |
| * | Use autodoc for X509NameLaurens Van Houtven2014-06-171-8/+37
| | |
| * | Use autoclass for PKeyLaurens Van Houtven2014-06-171-5/+17
| | |
| * | Pre-type/class unification Pythons are oldLaurens Van Houtven2014-06-171-6/+0
| | | | | | | | | | | | | | | Old enough that their artifacts in PyOpenSSL can be shipped off to a table somewhere...
| * | Add docstrings for X509StoreLaurens Van Houtven2014-06-171-0/+21
| | |
* | | fix a leak in _subjectAltNameStringPaul Kehrer2015-05-041-0/+1
| |/ |/|
* | Moving string mask to end of file to perform initialization at the same time ↵D.S. Ljungmark2015-04-151-3/+6
| | | | | | | | as other code.
* | Set the string-mask to utf8onlyD.S. Ljungmark2015-04-151-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If subject had utf-8 characters in them, the encoding chosen by OpenSSL for defaults T61. From the OpenSSL source code: * utf8only : only use UTF8Strings (RFC2459 recommendation for 2004). That was 10 years ago, and the last remnant that had problems with it was Netscape, which is no longer a problem. A request changes from: 13:d=5 hl=2 l= 3 prim: OBJECT :commonName 18:d=5 hl=2 l= 9 prim: T61STRING :Gurka ��� To: 13:d=5 hl=2 l= 3 prim: OBJECT :commonName 18:d=5 hl=2 l= 12 prim: UTF8STRING :Gurka åäö OpenSSL/test/test_crypto.py Update test DER data to have utf8string. ( \x0c instead of \0x13, PrintableString )
* | Fix weird spacing change.Jean-Paul Calderone2015-04-131-4/+1
| |
* | merge masterJean-Paul Calderone2015-04-131-0/+9
|\ \
| * | Rename warn_text to something a little more descriptive.Jean-Paul Calderone2015-04-131-5/+6
| | |
| * | merge master, resolve simple conflictsJean-Paul Calderone2015-04-131-1/+122
| |\ \
| * | | Factor the warning code into a shared helper. Remove some of the ↵Jean-Paul Calderone2015-03-291-34/+6
| | | | | | | | | | | | | | | | unnecessary repetition from the tests.
| * | | Tests for added backward compatibility in crypto.pyAbraham Martin2015-03-251-4/+4
| | | |
| * | | Reuse six importsAbraham Martin2015-03-251-13/+12
| | | |
| * | | Use six library to check python versionAbraham Martin2015-03-251-17/+9
| | | |
| * | | Different warning messages for different versions of PythonAbraham Martin2015-03-251-5/+26
| | | |
| * | | Emit proper warningsAbraham Martin2015-03-251-4/+5
| | | |
| * | | Fix regressions in support for bytes / unicodeAbraham Martin2015-02-041-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix regressions in support for bytes / unicode in certain APIs #15. Added a check for _text_type, raise a DeprecationWarning and encode the str to utf-8. This should preserve 0.13 API calls. I used the 0.13 test suite with the 0.14 code and made the necessary changes to make 0.13 and 0.14 tests pass.
* | | | Switch the message digest name to bytes.Jean-Paul Calderone2015-04-131-7/+10
| | | |
* | | | Unify the unspecified argument thing.Jean-Paul Calderone2015-04-131-7/+5
| | | |
* | | | Merge remote-tracking branch 'origin/master' into 159-crl-export-digestJean-Paul Calderone2015-04-131-2/+123
|\ \ \ \ | | |/ / | |/| |