PDA

View Full Version : Dish same Mecm , with different DES call


ChpPfc2
08-13-2008, 05:42 PM
seams to be an unknown DES function ...

i dont know much about DES , but when 07 pass through it fouk a lot of code ...

stay tune ...

aschubart
08-13-2008, 06:14 PM
What is DES? Is it like marking plastic or something?

Bondjames
08-13-2008, 06:38 PM
It's a math function. D ata E cryption S tandard.

seaboard18
08-13-2008, 07:03 PM
What is DES? Is it like marking plastic or something?

DES is a block cipher--meaning it operates on plaintext blocks of a given size (64-bits) and returns ciphertext blocks of the same size. Thus DES results in a permutation among the 2^64 (read this as: "2 to the 64th power") possible arrangements of 64 bits, each of which may be either 0 or 1. Each block of 64 bits is divided into two blocks of 32 bits each, a left half block L and a right half R. (This division is only used in certain operations.)

Example: Let M be the plain text message M = 0123456789ABCDEF, where M is in hexadecimal (base 16) format. Rewriting M in binary format, we get the 64-bit block of text:

M = 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1101 1110 1111
L = 0000 0001 0010 0011 0100 0101 0110 0111
R = 1000 1001 1010 1011 1100 1101 1110 1111

The first bit of M is "0". The last bit is "1". We read from left to right.

DES operates on the 64-bit blocks using key sizes of 56- bits. The keys are actually stored as being 64 bits long, but every 8th bit in the key is not used (i.e. bits numbered 8, 16, 24, 32, 40, 48, 56, and 64). However, we will nevertheless number the bits from 1 to 64, going left to right, in the following calculations. But, as you will see, the eight bits just mentioned get eliminated when we create subkeys.

Example: Let K be the hexadecimal key K = 133457799BBCDFF1. This gives us as the binary key (setting 1 = 0001, 3 = 0011, etc., and grouping together every eight bits, of which the last one in each group will be unused):

K = 00010011 00110100 01010111 01111001 10011011 10111100 11011111 11110001

92firebird
08-13-2008, 07:11 PM
wow good way to explain

Whitey
08-14-2008, 03:28 AM
Can someone get me up to speed? what are the current MECMs in use 40 and 60 anyone have logs/ so we can start tearing this apart