How to generate a mixed-case hash in Python?
- by pyrony
I am having a hard time figuring out a reasonable way to generate a mixed-case hash in Python.
I want to generate something like: aZeEe9E
Right now I'm using MD5, which doesn't generate case-sensitive hashes.
What is a good way to generate a hash value consisting of upper- and lower- case characters + numbers?