Con Posted November 13, 2007 Posted November 13, 2007 Hey guys i was just wondering how can i encrypt a string that i want to write in a ini file so i want an inputbox to appear and then you write your name then the script would write it encrypted to a ini. Then be able to read the encrypted name and decrypt it. the encryption would be like A=1 b=2 c=3 ect. thanx in advance. Hello?
JustinReno Posted November 13, 2007 Posted November 13, 2007 _StringEncrypt() Look it up in the help file.
Josbe Posted November 13, 2007 Posted November 13, 2007 Search in the "Example Scripts" forum...some UDF could help you. AUTOIT > AutoIt docs / Beta folder - AutoIt latest beta
Generator Posted November 13, 2007 Posted November 13, 2007 #include <String.au3> IniWrite("Setting.ini","User Information","Password"_StringEncrypt(1,InputBox("Security Check", "Enter your password.", "", "*"),"encryptpassword",1))
Valuater Posted November 13, 2007 Posted November 13, 2007 Just missing 1 comma"Password",_StringEncrypt(...8)
Generator Posted November 13, 2007 Posted November 13, 2007 Just missing 1 comma"Password",_StringEncrypt(...8)Good catch
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now