Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | move x509 to top level, add more docs | Paul Kehrer | 2014-12-15 | 1 | -2/+2 | |
| | ||||||
* | initial x509 version support | Paul Kehrer | 2014-12-15 | 1 | -1/+11 | |
| | | | | Adds enum34 as a dependency | |||||
* | initial x509 openssl implementation | Paul Kehrer | 2014-12-15 | 2 | -1/+116 | |
| | ||||||
* | Don't check DSA error stack | Alex Stapleton | 2014-11-24 | 1 | -5/+1 | |
| | ||||||
* | Update the license header for every source file, as well as the documentation. | Alex Gaynor | 2014-11-16 | 10 | -120/+30 | |
| | | | | Fixes #1209 | |||||
* | Move the cryptography package into a src/ subdirectory | Donald Stufft | 2014-11-13 | 10 | -0/+2609 | |
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. |