January 30, 201115 yr Author I posted the algorithm on the forum somewhere but can't find it at the moment. But the ProductKey is reverse base-64 encoded in the digitalproductid. Let me dig around a bit and I'll see if I can find it again.
January 30, 201115 yr I posted the algorithm on the forum somewhere but can't find it at the moment. But the ProductKey is reverse base-64 encoded in the digitalproductid. Let me dig around a bit and I'll see if I can find it again.Base 64 or base 24? So I need to decode the every letter using base24/base64 algorithm first and then just reverse it? Cause usually product id is in this format 12345-123-1234567-12345 unlike Product key... Product key is in this format >> FFFFF-GGGGG-HHHHH-JJJJJ-KKKKK...Thank you ;DEDITCan't find mine, but here is a vbscript example.Thanks but the only problems is that I don't know VB. I am coding in C++...Can you answer me on above question?Thanks again ;D Edited January 30, 201115 yr by Cokaric
January 30, 201115 yr Author Reverse base 64 encoded starting at character 52.How about this: http://www.codeproject.com/KB/system/Product_Key_Finder.aspx
January 30, 201115 yr Reverse base 64 encoded starting at character 52.How about this: http://www.codeproject.com/KB/system/Product_Key_Finder.aspxThanks allot ;D This is easier for me to understand even though its coded in C#... I will try to code on my own in pure C++... Thanks again =)
January 30, 201115 yr This is easier for me to understand even though its coded in C#... I will try to code on my own in pure C++... Thanks again =)It's really not that hard to port (if a C# guy like me was able to do it then it should be easy for a C++ guy), but there's already tons of such code on the web (to decode DigitalProductID's), even in C++, like here. Google will find plenty of relevant hits if you search with terms like DigitalProductID and C++. These kinds of apps have been around for just about forever, so it should be pretty easy to find source code for most major languages.
Create an account or sign in to comment