I want to encrypt some information for the licensing system, and I want the result to be entered by the user.
Update: This operation must be reversible (decrypt) For example. Encryption (ComputerID + ProductID) → (any standard ASCII character that can be entered. Ideally, maybe even just AZ).
So far, I have done this to convert ciphertext to HEX (so this is any character from 0-F), but it doubles the number of characters.
I am using VB6.
I think that I will perform some operation on each pair (Input $ (x) and Key $ (x)) and then do MOD to keep it within the range of ascii values (possibly 0-9-AZ)
Any suggestions for a good algorithm?
source
share