I read somewhere that string 0123456789ABCDEFFEDCBA987654321089ABCDEF01234567 is 192 bit (24). Its written that it is a "hex representation of bytes"
I need help on this concept.
PS: This is secret key of TripleDES algorithm.
|
|
In hexadecimal numbers, you have 16 different digits. These are written using first the ordinary 10 symbols used for decimal digits, 0 through 9. Then the first six letters of the Latin alphabet are used, i.e. A through F. Since each digit represents a value in the range 0 through F, i.e. one of sixteen possibilities, it holds four bits of information. Thus, in a long string of hex digits, you can compute the total number of bits of information as just four times the number of digits present. Your example string, "0123456789ABCDEFFEDCBA987654321089ABCDEF01234567", is 48 digits. This means it is a 48 * 4 = 192 bit number, in hexadecimal form. If you're interested in viewing this large number as a sequence of bytes, just take pairs of digits, since each byte is 8 bits. The first (counting from the left) few bytes then become |
||||
|
|
|
It's just a big number. The only difference between the numbers you are used to (such as "192") is that it's written in using the hexadecimal number system instead of the decimal number system. The hexadecimal number system uses 16 digits (0-9 and A-F) instead of the 10 you are used to (0-9). That particular number is equivalent to 27898229935051914480226618602452055732231960245295072615 in decimal notation. |
|||
|
|
|
Joachim already explained the theoretical concept. If you want to play around with such numbers yourself in Java, then take a look at E.g., to convert your hexadecimal number to the decimal or any other system:
|
|||||||
|
3 (hex) keys aka |
|||
|
|
|
Each character in hexadecimal corresponds to 4 bits. So for your example, there are 48 characters and 48 * 4 = 192 bits. |
|||
|
|
|
With regard to your second question: How does the JVM distinguish between numbers in different bases? It does not and can not do so! You as a programmer have to support the JVM. If you specify small constants, then you use a prefix to signal either decimal, octal, or hexadecimal base:
There are only prefixes for octal, decimal, and hexadecimal base because these are most often used by programmers. Note, that there is no prefix for binary constants! If you use the
|
|||
|
|
|
I am thankful to you people for helping me understand the concept. One thing I want to ask you how JVM distinguish it to a HEX representation. Not a alphanumeric combination from 0-9,A-F? Because it is enclosed in quotes like simple string. Thank you all again. |
|||||||||||
|