Cita:
mi problema es que necesito validar que el password del usuario que inicie sesion, sea el mismo a partir de una clave (encriptada), la cual por obvias razones no he podido desencriptar o encriptar en php para comparar. // Then, we need to turn the password into Key and IV
// We are using salt to make it harder to guess our key using a dictionary attack -
// trying to guess a password by enumerating all possible words.
PasswordDeriveBytes pdb = new PasswordDeriveBytes(Password,
new byte[] { 0x49, 0x76, 0x61, 0x6e, 0x20, 0x4d, 0x65, 0x64, 0x76, 0x65, 0x64, 0x65, 0x76 });
// We are using salt to make it harder to guess our key using a dictionary attack -
// trying to guess a password by enumerating all possible words.
PasswordDeriveBytes pdb = new PasswordDeriveBytes(Password,
new byte[] { 0x49, 0x76, 0x61, 0x6e, 0x20, 0x4d, 0x65, 0x64, 0x76, 0x65, 0x64, 0x65, 0x76 });
Alguien sabe alguna manera o alguien me podria ayudar con esto, como desencriptar el codigo generado en ASP con Rijdael, o como encriptar para comparar el mismo codigo desde PHP???
No he podido continuar y desde ayer estoy intentando con algunas funciones pero no me ha dado resultado, necesito ayuda!!! y la verdad que ya me siento frustrado :( , de antemano muchas gracias.