-
```
Not sure if the idea is in-scope for passlib, just wanted to keep the idea here:
What features would the enhancement add?
2factor auth (like google authenticator uses, is standardized by rfc)
f…
-
$ python hatdecrypter.py -t 0 -p ebea25dadcb23a11ff3fd991f94f3665
File "hatdecrypter.py", line 36
print "Voce precisa definir um tipo de hash!"
^
…
-
Hello! I noticed you were learning about storing passwords securely. Unfortunately just storing them as SHA256 hashes is insufficient in this day and age. SHA256 is designed to be fast, so by conseque…
mokou updated
3 years ago
-
We use ` werkzeug.security.generate_password_hash()`:
https://github.com/conbench/conbench/blob/fbf5a6ce898532d44327e3ac961f5abb852843bc/conbench/entities/user.py#L33
Review this.
Docs:
> …
-
```
many of the hashes in passlib rely on stdlib's base64.b64decode() to perform
validation of base64 sequences. but b64decode() is way more tolerant than I'd
like for a password hash parser - it ch…
-
The base classes for LDAP DIT entries found in :file:`ldaptor/entry.py` are hard-coded to store password hashes for simple BINDs in salted SHA1 format. The entry is prefixed with "{SSHA}". This is s…
-
Nice script.
I noticed something odd though.
I copied your script to a brand new CentOS 6.5 server to /usr/bin/mksha
I installed python-passlib as stated in dependency.
As far as I know $6 is a SHA h…
-
```
Not sure if the idea is in-scope for passlib, just wanted to keep the idea here:
What features would the enhancement add?
2factor auth (like google authenticator uses, is standardized by rfc)
f…
-
-
```
SCrypt (http://www.tarsnap.com/scrypt.html) is a key derivation function
designed by Colin Percival; and is unique in that it is memory-hard as well as
time-hard.
There is currently no passwor…