Tagged Questions

-1
votes
2answers
43 views

hex number of length 128 which is to be converted to binary in c#

private static string GetSHA512(string strPlain) { UnicodeEncoding UE = new UnicodeEncoding(); byte[] HashValue, MessageBytes = UE.GetBytes(strPlain); SHA512Managed SHhash = new …
0
votes
0answers
52 views

sorry guys, its hex number of 128 length which is to be converted to binary in c# [closed]

private static string GetSHA512(string strPlain) { UnicodeEncoding UE = new UnicodeEncoding(); byte[] HashValue, MessageBytes = UE.GetBytes(strPlain); …
2
votes
3answers
79 views

Python hexadecimal comparison

Hey guys, I got a problem I was hoping someone could help me figure out! I have a string with a hexadecimal number = '0x00000000' which means: 0x01000000 = apple 0x00010000 = orange …
0
votes
1answer
8 views

jboss 4.3 DatabaseServerLoginModule doesn’t work if passwords are MD5 and hex-ed

I have a problem with authorization when my login-conf is <login-module code="org.jboss.security.auth.spi.DatabaseServerLoginModule" flag="optional"> <module-option …
0
votes
2answers
39 views

How to convert string to hexadecimal integer in Python?

hi I get user argv from command line as follows: '0x000aff00' and I want python to treat it as hex directly... str = sys.argv[1] how is it possible? thanks!
0
votes
2answers
17 views

Service/App for viewing a Webpage as hex straight off the wire?

Are there any tools/websites/utilities for viewing a website in hex as it comes strait off the wire? I'm getting some strange non-printing characters back from somebody else's C++ code and I want …
4
votes
2answers
437 views

Where did these hex named folders come from?

First off, I am using Windows XP. I have multiple hard drives and it looks like something decided to make some folders on the second one ( which is just a data drive, no os ). These folders all have …
19
votes
14answers
2k views

Why use hex?

Hey! I was looking at this code at http://www.gnu.org/software/m68hc11/examples/primes_8c-source.html I noticed that in some situations they used hex numbers, like in line 134: for (j = 1; val …
0
votes
2answers
40 views

Mac address ff:ff:ff:ff:ff:ff in C (hex)

How do I write the MAC address ff:ff:ff:ff:ff:ff as a char[] in C? Do I just do char macaddress[6] = "%0xFF%0xFF%0xFF%0xFF%0xFF%0xFF"; I'm not sure. Thanks!
0
votes
3answers
110 views

How To Remove Characters?

I'm start(really starting) an Assembly tool, at the time it only converts a decimal to a hexadecimal, but I want to remove the zeros from the result. Here is the code: // HexConvert.cpp #include …
0
votes
3answers
73 views

Question on converting decimal to binary to hex

I'm a little confused here: I'm trying to reverse engineer the ASCII value 65. In the book I am reading it says: Decimal: 65 Hex: 41 Octal: 101 But 65 in its binary representation is: 0010 0001 …
0
votes
4answers
5k views

Convert hex string to byte array

Hi, Can we converting a hex string to a byte array using a built-in function in C# or I have to make a custom method for this?
-1
votes
5answers
132 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 …
0
votes
1answer
119 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 …
2
votes
6answers
363 views

What is the purpose of hex-encoding for binary data?

I'm a bit curious as to why one would want to use hex encoding over base64. It seems to me that base 64 is more efficient. In particular, why is it that databases seem to always use hex encoding? …

1 2 3 4 5 11 next
15 30 50 per page