: : hi all can sumone help me out I am trying to encript passwords in a registry and I can not find any help files or examples on how to do this
: :
: : my reg input code
: :
: :
: : rIniFile.WriteString('Users', 'Name', txtNick.Text);
: : rIniFile.WriteString('Users', 'Password', txtPass.Text); - ( trying to encript this sestion so it dont show password in text in the registry )
: :
:
: Search on Google and you should find any number of encryption routines. Then you do the exact same thing as above, except pass MyEncFunction(txtPass.Text) instead.
:
Some encoding functions can create results with #0 characters inside. Thoose strings are truncated when written to the registry as a string. So be carefull!