aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
| * 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.