How would I create a random, 16-character base-62 salt in python? I need it for a protocol and I'm not sure where to start. Thanks.
|
feedback
|
This should work. | |||||
feedback
|
|
You shouldn't use UUIDs, they are unique, not random: Is using a CreateUUID() function as salt a good idea? Your salts should use a cryptographically secure random numbers, in python 2.4+, os.urandom is the source of these (if you have a good timing source).
you could also use a generator from bcrypt or other awesome crypto/hashing library that is well known and vetted by the people much more expert than I am.
| ||||
|
feedback
|
|
I kind of like:
That will be very, very random. | |||||||
feedback
|