IcemanND Posted January 30, 2011 Author Posted January 30, 2011 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.
IcemanND Posted January 30, 2011 Author Posted January 30, 2011 Can't find mine, but here is a vbscript example.
Cokaric Posted January 30, 2011 Posted January 30, 2011 (edited) 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, 2011 by Cokaric
IcemanND Posted January 30, 2011 Author Posted January 30, 2011 Reverse base 64 encoded starting at character 52.How about this: http://www.codeproject.com/KB/system/Product_Key_Finder.aspx
Cokaric Posted January 30, 2011 Posted January 30, 2011 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 =)
CoffeeFiend Posted January 30, 2011 Posted January 30, 2011 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.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now