1 2 3 4 5 6 7 8 9 10 |
[passlib] # Use a predictable hashing algorithm with plain text and no salt. This is # *only* useful for debugging and unit testing. # # We add the hex_md5 scheme for hash migration tests. The old hash will be # hex_md5 (which is not salted and thus reproducible), but since this is # deprecated here, it will get "ugpraded" to roundup_plaintext when # successfully verified. schemes = roundup_plaintext, hex_md5 deprecated = hex_md5 |