I am porting opera recovery from already existing C++ code
I struck at this function
MD5(tmpBuffer, sizeof(opera_salt) + DES_KEY_SZ, hashSignature1);
Where can I get that MD5 unit?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
steve0, the code in your link reference to the md5 openssl implementation, you can find the original declaration of the MD5 function used in the code in this link
you can use the
MessageDigest_5(since Delphi 2007) unit to calculate the md5 for a buffer or theTIdHashMessageDigest5class from the indy components.