index
:
delta/python-packages/passlib.git
1.3.x
Ehsan-Kia/add-missing-comma-in-python-string-list--1570159929332
class-based
cmdline-dev
drpoggi/fastpbk2-fastpbkdf2-1518202787739
drupal7
graingert/docs-updated-password-generation-section-1551709975688
ironpython-support-dev
kenyon/quickstartrst-grammar-fixes-1547285543894
lazy-load
master
mjhm/passlibhashbsdi_cryptrst-edited-online-w-1485713793666
no2to3-dev
release-1.5
release-1.6
scram-dev
scrypt-dev
speedup
stable
yuvallanger/fix-typo-1451443676093
foss.heptapod.net: python-libs/passlib
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
passlib
/
tests
Commit message (
Expand
)
Author
Age
Files
Lines
...
|
*
minor tweaks & fixes
Eli Collins
2012-02-08
2
-7
/
+7
|
*
large refactor of GenericHandler internals
Eli Collins
2012-02-08
4
-118
/
+211
*
|
deprecating min_verify_time option; doesn't meaningfully increase security, a...
Eli Collins
2012-01-19
1
-13
/
+32
|
/
*
assertEquals() -> assertEqual()
Eli Collins
2012-01-19
3
-42
/
+42
*
simplified crypt.crypt() wrappers
Eli Collins
2012-01-19
3
-71
/
+78
*
split exceptions/warnings to separate module; added some additional warning c...
Eli Collins
2012-01-18
3
-12
/
+16
*
misc bugfixes from round of changes
Eli Collins
2012-01-18
3
-33
/
+40
*
import cleanups
Eli Collins
2012-01-18
4
-45
/
+51
*
changed test_utils to import subjects within test functions, instead of globally
Eli Collins
2012-01-18
3
-25
/
+36
*
cleanups to utils
Eli Collins
2012-01-18
1
-2
/
+2
*
scram norm_digest_name() now normalizes 'sha-2-256' -> 'sha-256'
Eli Collins
2012-01-18
1
-1
/
+2
*
renamed the utils.handlers.XX_CHARS constants to match utils.XX_CHARS (old al...
Eli Collins
2012-01-18
2
-3
/
+3
*
replaced utils.h64 module with utils.Base64Engine instance
Eli Collins
2012-01-18
1
-89
/
+298
*
finished up UTs for scram hash
Eli Collins
2012-01-10
1
-5
/
+22
*
lots of work on scram hash
Eli Collins
2012-01-09
2
-1
/
+228
*
clarified border case where verify() accepted configuration strings instead o...
Eli Collins
2012-01-09
2
-7
/
+31
*
minor fixes
Eli Collins
2012-01-09
2
-3
/
+4
*
builtin implementations of md5_crypt and sha256/512_crypt sped up by about 25%
Eli Collins
2012-01-05
1
-0
/
+16
*
renamed utils.timer -> utils.tick
Eli Collins
2012-01-05
1
-5
/
+5
*
context tweaks:
Eli Collins
2012-01-02
1
-0
/
+3
*
tests use assertRegex instead of assertRegexpMatches
Eli Collins
2012-01-02
1
-13
/
+18
*
CryptContext can now run passwords through SASLPrep via "passprep" options [i...
Eli Collins
2012-01-02
1
-1
/
+57
*
renamed test_drivers.py -> test_handlers.py to match name of module its testing
Eli Collins
2011-12-28
3
-9
/
+9
*
move vm constants to compat module
Eli Collins
2011-12-28
1
-3
/
+3
*
removed Undef singleton, private _NOTSET singletons are cleaner.
Eli Collins
2011-12-28
2
-17
/
+8
*
deprecated to_hash_str, replaced all instances with to_native_str
Eli Collins
2011-12-28
5
-34
/
+41
*
misc fixes for py3 compat
Eli Collins
2011-12-28
2
-39
/
+39
*
Merge from default
Eli Collins
2011-12-28
4
-98
/
+357
|
\
|
*
CryptPolicy rewrite part 2
Eli Collins
2011-12-27
2
-19
/
+36
|
*
PrefixWrapper: added .ident and .ident_values proxies; dir() now reports prox...
Eli Collins
2011-12-22
1
-2
/
+35
|
*
large rewrite of how CryptPolicy is parsed and compiled; should result in *mu...
Eli Collins
2011-12-22
1
-100
/
+223
|
*
issue 24: added saslprep() function to support SASL stringprep profile; still...
Eli Collins
2011-12-13
1
-0
/
+76
|
*
was browsing Python's source, and noticed crypt() might sometimes return None --
Eli Collins
2011-12-09
1
-0
/
+10
*
|
couple of minor tweaks - basic unittests pass 2.7 & 3.2
Eli Collins
2011-12-06
2
-3
/
+4
*
|
replaced all #Py3k# conditional includes
Eli Collins
2011-12-06
2
-49
/
+32
*
|
ran a custom 2to3 fixer to replace all u"" with u() and add an import from co...
Eli Collins
2011-12-06
6
-122
/
+128
*
|
added compat.unicode imports in a number of places
Eli Collins
2011-12-06
5
-4
/
+7
*
|
added print() alias
Eli Collins
2011-12-06
1
-3
/
+3
*
|
moved sys_bits to compat, added exc_err, removed utils.py32_lang
Eli Collins
2011-12-06
2
-3
/
+4
*
|
added compat.sb_types for testing isinstance(obj,(bytes,unicode))
Eli Collins
2011-12-06
1
-2
/
+2
*
|
added get_method_function() to alias meth.im_func / meth.__func__
Eli Collins
2011-12-06
1
-3
/
+5
*
|
added callable shim for 3.0-3.1
Eli Collins
2011-12-06
1
-1
/
+1
*
|
replaced xrange() instances with compat.irange() alias
Eli Collins
2011-12-06
5
-15
/
+18
*
|
added compatibility module (passlib.utils.compat)
Eli Collins
2011-12-06
4
-6
/
+9
|
/
*
all verify() methods now use "constant time" comparison function (see CHANGEL...
Eli Collins
2011-12-01
1
-1
/
+85
*
Merge 1.5.3 bugfixes
Eli Collins
2011-10-08
1
-0
/
+1
|
\
|
*
Merge fixes from release-1.5
Eli Collins
2011-09-19
1
-0
/
+1
|
|
\
|
|
*
restored pure-python bcrypt implementation that was removed in r5211db139659
Eli Collins
2011-09-14
1
-0
/
+1
*
|
|
bcrypt padding work:
Eli Collins
2011-10-07
2
-5
/
+41
*
|
|
bugfix (issue 25):
Eli Collins
2011-10-05
2
-28
/
+188
|
/
/
[prev]
[next]