i am coding opera recovery tool in my delphi
i am using c++ which is already exist
but i didnt get whats DES_KEY_SZ in that code .
i think they are present in des.h ,but i couldnt found same des.pas 🙁
can any one help me please
regards
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.
Google Code Search finds many copies of des.h, where the
DES_KEY_SZmacro is defined. It’s the size of ades_cblock, which happens to be an array of eight unsigned chars.In other words,
DES_KEY_SZ = 8.You’re going to run into other problems beyond just that missing identifier, though. The code you showed calls a handful of DES functions, too. To unencrypt the data, try using DCPCrypt.