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.

link|improve this question

feedback

3 Answers

up vote 11 down vote accepted
>>> import random
>>> ALPHABET = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
>>> chars=[]
>>> for i in range(16):
    chars.append(random.choice(ALPHABET))

>>> "".join(chars)
'wE9mg9pu2KSmp5lh'

This should work.

link|improve this answer
7  
Nice answer, but the last 4 lines can be done more idiomatically with just ''.join(random.choice(ALPHABET) for i in range(16)) – Scott Griffiths Mar 14 '11 at 9:43
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).

salt = os.urandom(16).encode('base_64')

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.

import bcrypt
salt = bcrypt.gensalt()
# will be 29 chars
link|improve this answer
feedback

I kind of like:

import md5, uuid
m = md5.md5()
m.update(uuid.uuid4())
print m.digest()[:16]

That will be very, very random.

link|improve this answer
1  
Did you mean m.update(str(uuid.uuid4()))? And also m.hexdigest()[:16]? But still, that wouldn't be in base62 right? – utku.zih Mar 14 '11 at 2:31
Sorry, you're right about the code. I figure since my solution uses a subset of the base62 characters it might work for the original poster. – A. Jesse Jiryu Davis Mar 14 '11 at 4:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.