11-06-2006, 11:56 PM
I have the below snippet for VB and was wondering how I would go about doing this on QM. Simple code that converts HEX to ASCII.
Converter
|
11-06-2006, 11:56 PM
I have the below snippet for VB and was wondering how I would go about doing this on QM. Simple code that converts HEX to ASCII.
11-08-2006, 03:47 PM
Use str.decrypt.
str s s.decrypt(8 ...)
11-08-2006, 09:37 PM
11-08-2006, 09:45 PM
Because it is not hex string. It is binary data. Hex is binary (or anything else) where each byte is replaced to hexadecimal 2-char string. Binary is any data. Since binary data can contain null characters and other unreadable characters, it cannot be simply represented as text, and often is represented as hex.
11-08-2006, 09:50 PM
So can't use decrypt to decrypt binary data from registry keys?
11-08-2006, 09:54 PM
What do you want to do with that binary data? If you want to display it as hex or text, you can use function outb from one of recent posts here, or similar code.
11-08-2006, 10:00 PM
Show it as text not hex. The example I found using outb is not showing the output on text.
|
« Next Oldest | Next Newest »
|