0
votes
1answer
91 views
Convert from hexadecimal to binary C++
This kind of builds up on Already asked question...
However here, say, I'm given a hexadecimal input which could be a max of '0xFFFF'
I'll need it converted to binary, so that I'd end up with a max of …
-1
votes
5answers
96 views
How convert byte to decimal?
Hi...
Please guide me how make convert that input to decimal.tq.
BF C2 FF 12
65 E4 EE
17 BF C2 64 F2 41 84 11
C1 C4 38 41 14 10 C1 04 10 49 04 18 41 06 72 B5 FF
17 BF C2 64 72
41 84 11 C1 85 19 …
2
votes
2answers
140 views
How to test a byte against a hex value?
I want to test if the byte I read from a data file is 0xEE, what should I do? I tried if (aChar == 0xEE) but doesn't seems working. thanks for any help
0
votes
2answers
28 views
How to separate virus signatures in a virus signature file
I am doing an anti-virus project, I have a signature file and I want to separate the signatures in it. It is all beside each other and in hex, is there is a delimiter or something??
Thank you for …
1
vote
2answers
113 views
how to show hex code char ?
hi, i have a file contains numbers like FB8E,FB8F,FB90 on each line.
i want in my program to load this file and take each line and print the character corresponded to that number/line.
for expamle, …
0
votes
1answer
24 views
Read version info from .ABR file (Photoshop brush set)
Is it possible to detect which Photoshop version a brush set (.abr) file is compatible with from its binary data?
There is a open source C# programm called ABRViewer but it doesn't read version info.
…
1
vote
2answers
108 views
Hex 0x0001 vs 0x00000001
hi,
often in code that uses permissions checking, i see some folks use hex 0x0001 and others use 0x00000001. these both look like an equivalent of a decimal 1, if i'm not mistaking.
why use one …
1
vote
7answers
333 views
What does 0x0A mean?
What does 0x0A mean in C++?
if (version < 760 || version > 760){
disconnectClient(0x0A, STRING_CLIENT_VERSION);
}
uint32_t accnumber = msg.GetU32();
std::string password = msg.GetString();
…
-4
votes
2answers
88 views
byte array to hex string conversion in c language [closed]
If this is the char array has the hex values
char b[] = {0xf1, 0x0d, 0x3c, 0x44};
we have to convert to string like below as
char *string = "F10D3C44".
please provide the example for this.
0
votes
1answer
46 views
decodeHexString obj-c implementation, Should I support odd lengthed hexstrings, and if so, how?
I may be missing something in the standard libs, but I don't think so. I have this current implementation:
int char2hex(unsigned char c) {
switch (c) {
case '0' ... '9':
return c - …
1
vote
4answers
38 views
Storing hexadecimal values as binary in MySQL
I was thinking about how I'm storing passwords in my database : appropriately salted SHA1 strings in a CHAR(40) field. However, since the character data in there is actually just a hex representation …
1
vote
4answers
106 views
convert decimal to hex python
Hi All,
Im building a server in python, i need to convert a decimal value to hex like this :
let's say the packet start by 4 bytes which define the packet lenght :
00 00 00 00
if the len(packet) = …
1
vote
9answers
246 views
What exactly is the danger of using magic debug values (such as 0xDEADBEEF) as literals?
It goes without saying that using hard-coded, hex literal pointers is a disaster:
int *i = 0xDEADBEEF;
// god knows if that location is available
However, what exactly is the danger in using hex …
0
votes
3answers
99 views
Detect non-printable characters in JavaScript
Is it possible to detect binary data in JavaScript?
I'd like to be able to detect binary data and convert it to hex for easier readability/debugging.
After more investigation I've realized that …
2
votes
2answers
115 views
Why is this statement true in PHP?
I don't understand why this statement in PHP echos 'whaaa?' -- (0x0F | 0xF0) should be 0xFF no?
if((0x0FFFFFFF | 0xF0FFFFFF) != 0xFFFFFFFF) echo 'whaaa?';
