Hashing (hidding) strings in Python
- by Lucas
What I need is to hash a string. It doesn't really have to be secure because its just going to be a hidden pharse in the text file (simply it doesn't have to be recognizable for a human-eye).
It should not be just a random string because when user will be typing the string I would like to hash it and compare it with already hashed one (in the text file).
What would be the best for this purpose? Can it be done with the own class?