Link to home
Start Free TrialLog in
Avatar of omsec
omsec

asked on

Encoding Strings

I want to write a Password - String down in a untyped file. The Passwords is a String[30]. My Problem is, it is too easy to rip that information. You just neen to view the file with a good editor and you will find the password sooner or later. So how can i scramble this string ?
ASKER CERTIFIED SOLUTION
Avatar of ronit051397
ronit051397

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of siabod
siabod

Hi omsec,
Simplest encryption is add a letter to each letter in the
string, when reading take one letter back in the alphbet

ill. :  HELLO  --> IFMMP

You can always find better ways to encrypt.