18.08.2012, 19:28
i want to open all the users in the server(in folder users) and decode the passwords and then save them to another location (new users) with then encode with sha512 or sha1
current encryion
i currently have a load and save system in my script could i adapt that? and do this?
current encryion
Код:
for(new x=0; x < strlen(string); x++) { string[x] -= (3^x) * (x % 15); if(string[x] > (0xff)) { string[x] -= 256; } }