aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | add NotImplemented handlingPaul Kehrer2014-12-103-0/+21
| |
* | add __ne__ and __eq__ methods to RSA, DSA, and EC numbers classesPaul Kehrer2014-12-103-0/+63
| | | | | | | | fixes #1449
* | Fixed #1494 -- switch which define we look for for SSLv3 disabled. We're now ↵Alex Gaynor2014-12-081-5/+5
| | | | | | | | using the same one as CPython.
* | Merge pull request #1502 from reaperhulk/fix-1285Alex Gaynor2014-12-081-0/+46
|\ \ | |/ |/| Support decoding RFC 6979 signatures to (r, s)
| * directly test r, s for integer-nessPaul Kehrer2014-12-071-5/+9
| |
| * catch PyAsn1Error for encoding signature as wellPaul Kehrer2014-12-071-3/+7
| |
| * catch PyAsn1Error when decoding rfc6979 signaturePaul Kehrer2014-12-061-1/+6
| |
| * assign tuple to multiple vars for better readabilityPaul Kehrer2014-11-301-4/+4
| |
| * error if signature has trailing bytesPaul Kehrer2014-11-301-0/+4
| |
| * add encode_rfc6979_signature and refactor tests to use itPaul Kehrer2014-11-271-1/+8
| |
| * add decode_rfc6979_signature helper for DSA/ECDSAPaul Kehrer2014-11-271-0/+22
| |
* | OpenSSL binding: add support for NETSCAPE_SPKI_b64_decodePierre Bourdon2014-12-071-0/+1
| |
* | Add various bits useful when generating X509 certsAlex Stapleton2014-12-064-0/+60
|/
* Remove stray spaceVladimir Didenko2014-11-271-1/+1
|
* Export X509_STORE_load_locations and X509_STORE_set_default_paths functions. ↵Vladimir Didenko2014-11-271-0/+2
| | | | They are necessary if you want to verify certificates offline.
* add X509Backend support to multibackendPaul Kehrer2014-11-262-1/+25
|
* Merge pull request #1442 from reaperhulk/x509-interfaceAlex Gaynor2014-11-262-0/+54
|\ | | | | X509 interfaces
| * add X509Certificate version attributePaul Kehrer2014-11-251-0/+6
| |
| * add load_der_x509_certificate X509Backend methodPaul Kehrer2014-11-241-0/+6
| |
| * add backend interface for loading x509 certificatesPaul Kehrer2014-11-241-0/+9
| |
| * Initial minimal X509Certificate interfacesPaul Kehrer2014-11-241-0/+33
| | | | | | | | | | This will be expanded in the future to include algorithm identifier, subject, issuer, extensions, etc
* | change the cfdataref typedef to be more flexible/correctPaul Kehrer2014-11-241-1/+1
| |
* | add SecItemExport bindingPaul Kehrer2014-11-241-0/+2
| |
* | Merge pull request #1488 from alex/no-sslv3Paul Kehrer2014-11-241-0/+16
|\ \ | | | | | | Support compilation on platforms, such as debian expiremental, which are compiled without SSLv3
| * | Support compilation on platforms, such as debian expiremental, which are ↵Alex Gaynor2014-11-241-0/+16
| |/ | | | | | | compiled without SSLv3
* / Don't check DSA error stackAlex Stapleton2014-11-241-5/+1
|/
* Update the license header for every source file, as well as the documentation.Alex Gaynor2014-11-1696-1153/+289
| | | | Fixes #1209
* Monkeypatch the CFFI Verifier to prevent the implicit compileDonald Stufft2014-11-141-0/+11
|
* Move the cryptography package into a src/ subdirectoryDonald Stufft2014-11-1396-0/+12481
Due to differences in how py.test determines which module to ``import`` the test suite actually runs against the cryptography which is in the *current* directory instead of the cryptography which is installed. The problem essentially boils down to when there is a tests/__init__.py then py.test adds the current directory to the front of the sys.path, causing it to take precedence over the installed location. This means that running the tests relies on the implicit compile that CFFI does instead of testing against what people will actually be runnning, which is the module compiled by setup.py.