6 lines
110 B
Python
6 lines
110 B
Python
import random
|
|
import string
|
|
|
|
|
|
def generate_salt():
|
|
return "".join(random.choices(string.hexdigits, k=36))
|