retrival of password problem
-
Hi all I am encrypting my password using md5 algo to store in sql server.. While retriving the password the esacpe sequence "\r" is replaced "\\r". thus the 2 password doesnt match. i tried to check for \\ at the rertival string and replace it with \ using string.replace also tried to resolve the problem using regex.. It doesnt work for me.. thx in advance.
-
Hi all I am encrypting my password using md5 algo to store in sql server.. While retriving the password the esacpe sequence "\r" is replaced "\\r". thus the 2 password doesnt match. i tried to check for \\ at the rertival string and replace it with \ using string.replace also tried to resolve the problem using regex.. It doesnt work for me.. thx in advance.
-
After encrypt before saving to database,encode it in 64 bit and then save it.and do vice versa after retrieving from DB.By this you won't get this type of issue.When get resolved ,let me know too.
Cheers!! Brij