| Commit message (Expand) | Author | Age | Files | Lines |
| * | bcrypt padding work: | Eli Collins | 2011-10-07 | 2 | -5/+41 |
| * | bugfix (issue 25): | Eli Collins | 2011-10-05 | 2 | -28/+188 |
| * | added django 0.9 support to passlib.ext.django & tests (such as may be found ... | Eli Collins | 2011-09-19 | 2 | -24/+54 |
| * | improvements to passlib.ext.django | Eli Collins | 2011-09-14 | 3 | -3/+555 |
| * | fixed small bug in CryptPolicy.iter_config() related to deprecation options | Eli Collins | 2011-09-14 | 1 | -17/+46 |
| * | bugfix: django_des_crypt now accepts all H64_CHARS in salt [issue 22] | Eli Collins | 2011-09-12 | 1 | -10/+62 |
| * | added passlib.tests.__main__ so that nose can be invoked via 'python -m passl... | Eli Collins | 2011-08-17 | 1 | -0/+6 |
| * | test.utils: added backport of assertRegexpMatches for py26/25 | Eli Collins | 2011-08-13 | 1 | -0/+12 |
| * | fix class.__module__ for gaeunit class discovery | Eli Collins | 2011-08-12 | 1 | -1/+2 |
| * | more forgiving bounds for mvt test | Eli Collins | 2011-08-12 | 1 | -6/+10 |
| * | unittest fixes | Eli Collins | 2011-08-12 | 4 | -27/+66 |
| * | GAE compatibility fix: changed apache UTs to not rely on filesystem. | Eli Collins | 2011-08-12 | 1 | -66/+69 |
| * | fixed UT border case w/ zipped egg | Eli Collins | 2011-08-12 | 1 | -0/+8 |
| * | additional linesep & encoded tests for CryptPolicy.from_string / from_path | Eli Collins | 2011-08-12 | 1 | -5/+25 |
| * | added gae_env flag to disable some CryptPolicy.from_path() unittests under Go... | Eli Collins | 2011-08-12 | 3 | -24/+57 |
| * | tweak to registry tests so they work even if passlib.tests is imported under ... | Eli Collins | 2011-08-12 | 2 | -7/+17 |
| * | tidy up backend test case names | Eli Collins | 2011-08-12 | 2 | -24/+27 |
| * | added simple unittests to check passlib.apps & passlib.hosts contexts are wor... | Eli Collins | 2011-08-12 | 2 | -0/+219 |
| * | bugfix: make sure ``passlib.hash.__loader__`` attribute writable - needed by ... | Eli Collins | 2011-08-12 | 1 | -1/+27 |
| * | bugfix to CryptContext.verify [issue 17] | Eli Collins | 2011-08-10 | 1 | -16/+45 |
| * | added backport of catch_warnings for py25; added testcase method assertWarnin... | Eli Collins | 2011-08-10 | 1 | -11/+134 |
| * | added TestCase.__test__ helper to fix test runner mistakes if used w/ plain UT2 | Eli Collins | 2011-07-11 | 1 | -0/+5 |
| * | replaced assert_, assertEquals, assertNotEquals to silence Py3.2 deprecation ... | Eli Collins | 2011-07-11 | 7 | -147/+147 |
| * | added test for builtin MD4 class even if SSL version present, for coverage | Eli Collins | 2011-07-11 | 1 | -7/+30 |
| * | bugfixes from running UTs | Eli Collins | 2011-07-09 | 3 | -7/+13 |
| * | added multi-backend tests for BSDiCrypt and SHA1Crypt; previously only tested... | Eli Collins | 2011-07-08 | 1 | -8/+10 |
| * | changed HandlerCase to monkeypatch os_crypt if needed to increase test covera... | Eli Collins | 2011-07-08 | 1 | -22/+76 |
| * | cleaned up and documented HasManyBackends behavior; now raises MissingBackend... | Eli Collins | 2011-07-08 | 2 | -8/+22 |
| * | stripped trailing whitespace from a bunch of files | Eli Collins | 2011-07-08 | 4 | -41/+41 |
| * | made disabled backends skipTest msg be more informative | Eli Collins | 2011-06-30 | 2 | -8/+12 |
| * | django work | Eli Collins | 2011-06-30 | 1 | -10/+95 |
| * | made UTs check for unittest2 even under py 2.7 / 3.2 | Eli Collins | 2011-06-29 | 1 | -14/+14 |
| * | UT2 compat - mirror info from nose's __test__ attr to __unitest__skip__ | Eli Collins | 2011-06-22 | 1 | -24/+33 |
| * | redid multi-backend tests to have separate test named for each backend, and u... | Eli Collins | 2011-06-22 | 3 | -52/+73 |
| * | redid test.utils to make use of unittest2 features if available | Eli Collins | 2011-06-22 | 2 | -94/+132 |
| * | minor fixes | Eli Collins | 2011-06-20 | 1 | -1/+1 |
| * | made undocumented lmhash func compat w/ py3 | Eli Collins | 2011-06-20 | 1 | -7/+7 |
| * | added UT for safe_os_crypt(), helper method is_ascii_safe() | Eli Collins | 2011-06-20 | 2 | -5/+50 |
| * | apache module rewritten for py3 compat | Eli Collins | 2011-06-20 | 1 | -27/+104 |
| * | converted remaining handlers to py3 compat (all unix crypt hashes) | Eli Collins | 2011-06-17 | 1 | -26/+27 |
| * | converted md5crypt to py3 compat | Eli Collins | 2011-06-17 | 1 | -5/+9 |
| * | pbkdf2 handlers now py3 compat | Eli Collins | 2011-06-17 | 1 | -14/+14 |
| * | converted handlers to py3 compat: fshp, mysql, oracle, postgres, roundup, phpass | Eli Collins | 2011-06-17 | 1 | -6/+6 |
| * | converts handlers .digests, .ldap_digests, .misc to be py3 compat | Eli Collins | 2011-06-17 | 1 | -9/+7 |
| * | base HandlerCase, and utils.handlers UTs, converted to support unicode policy | Eli Collins | 2011-06-17 | 2 | -69/+118 |
| * | made some changes to custom TestCase base class, to work better w/ unittest2 | Eli Collins | 2011-06-17 | 1 | -42/+60 |
| * | rest of utils now py3 compat | Eli Collins | 2011-06-17 | 1 | -71/+212 |
| * | utils.des now py3 compat; fixed some other utils as well | Eli Collins | 2011-06-17 | 1 | -3/+3 |
| * | utils.h64 now py3 compatible | Eli Collins | 2011-06-17 | 1 | -34/+43 |
| * | basic work to make CryptContext unicode aware. | Eli Collins | 2011-06-16 | 1 | -3/+16 |