0
votes
2answers
26 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 …
1
vote
2answers
103 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/ …
0
votes
7answers
309 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 passwor …
1
vote
2answers
89 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 mistakin …
0
votes
1answer
21 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' …
-4
votes
2answers
83 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 …
1
vote
4answers
92 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 …
0
votes
1answer
39 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': …
1
vote
4answers
35 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 …
1
vote
9answers
240 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 da …
0
votes
3answers
75 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 …
2
votes
2answers
111 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?';
2
votes
2answers
131 views
c++ hex number format
Hi,I'm trying to output the hex value of a char and format it in a nice way.
Required: 0x01 : value 0x1
All I can get is: 00x1 : value 0x1 // or 0x1 if i don't …
2
votes
4answers
195 views
Python convert hex to float
How to convert the following hex string to float (single precision 32-bit) in python?
"41973333" -> 1.88999996185302734375E1
"41995C29" -> 1.91700000762939453125E1
"470FC6 …
1
vote
3answers
55 views
Creating a ISO-8859-1 string from a HEX-string in Java, shifting bits.
Hello experts!
I am trying to convert a HEX-sequence to a String encoded in either, ISO-8859-1, UTF-8 or UTF-16BE. That is, I have a String looking like: "0422043504410442" this r …
