Ben şöyle bir dize # crypt ile bir şifre şifreler bir yakut istemci programı var
encrypted = password.crypt(SALT)
# removing first two characters which actually are the salt for safety
return encrypted[2, encrypted.size - 2]
it then sends it to a server for comparison with it's stored pre-encrypted string. how ever I need to be able to send the same encrypted password form a c# app and a php web page and still be able to log in with the same password from any of the other clients.
ne şifreleme için C # ve php eşdeğer kod olurdu?