[RESOLVED] Different ways of reading Reg_Binary to string?
I have this value that I exported from regedit:
Code:
"Value"=hex:56,d6,b5,e9,b5,f0,90,f2,6c,64,51,ad,df,c8,6d,75,db,31,1f,bc
The hex after the colon should be
I would like to know different ways converting that "hex" array to string. Because I want to know how it is encoded.
Re: Different ways of reading Reg_Binary to string?
How did you end up with the value 7ahk7dht74?
Re: Different ways of reading Reg_Binary to string?
No I didn't end up with it. A program that is not open source creates that key, and in the program it says the key got the value as written above.
Re: Different ways of reading Reg_Binary to string?
It's obviously encoded or encrypted. That's the only reason a 20 digit hex becomes a 10-digit string.
Re: Different ways of reading Reg_Binary to string?
Yeah probably, so then there is no way to find out how it is encrypted?
Re: Different ways of reading Reg_Binary to string?
You'd have to ask the company that's storing the data. It doesn't appear to be something simple like a Caesar Cypher.
Re: Different ways of reading Reg_Binary to string?
Okay, thx for telling me anyway.
Re: [RESOLVED] Different ways of reading Reg_Binary to string?
I found this yesterday but forgot to post the link.
Re: [RESOLVED] Different ways of reading Reg_Binary to string?