so what I have currently set up is an import from a txt file. this is just a 94 character string which contains all the typeable characters (except whitespace). I want to use this as a new alphabet for some encryption.
for instance someone uses "user12AB#BAuser" as a password. the key would then convert this using the key. for instance, lowercase U is the 21st letter in the alphabet. this will then be assigned to the 21st letter in the key.
How would you code this?
the coding language is python.
thanks for your assistance.