S-des Key Generation Code In C

Posted on
S-des Key Generation Code In C Average ratng: 3,6/5 8758 votes

Mar 24, 2010  I have been asked to do a DES encryption project in C but pretty new to programming. I've found the following code in C but am not sure how to do the equivalent of classes in C. I dont know the syntax of how to move from one section of code to the next. (S)DES input/key complement property. P3.10 (a) Using input X' and key K', both inputs to the first XOR are complemented, therefore the XOR output, and the result of F, will be the same as using uncomplemented X and K The second XOR has inputs L' and F.

  1. S-des Key Generation Code In C 1
  2. S-des Key Generation Code In California

This is an implementation in C of DES (Data Encryption Standard).

It does not work correctly, see https://github.com/mimoo/DES/issues/6

This is to be used only for files that are multiples of 64 bits exactly. We used ECB as a mode of operation but haven't implemented any padding system (it is not the point, if you want to add it you can always fork the code!).

DES is a broken cypher and this work is intended for educational purpose.

Files

S-des Key Generation Code In C 1

  • DES.c and DES.h contain the functions used in the DES algorithm.

  • main.c builds the algorithm and allows you to encrypt/decrypt an input file.

Use make to build desbox.

  • genkey.c is a key generator that prevents weak keys. Use it if you don't have any key to use.

Use make to build the keygen.

  • Cryptography Tutorial
  • Cryptography Useful Resources
  • Selected Reading

The Data Encryption Standard (DES) is a symmetric-key block cipher published by the National Institute of Standards and Technology (NIST).

DES is an implementation of a Feistel Cipher. It uses 16 round Feistel structure. The block size is 64-bit. Though, key length is 64-bit, DES has an effective key length of 56 bits, since 8 of the 64 bits of the key are not used by the encryption algorithm (function as check bits only). General Structure of DES is depicted in the following illustration −

Since DES is based on the Feistel Cipher, all that is required to specify DES is −

  • Round function
  • Key schedule
  • Any additional processing − Initial and final permutation

Initial and Final Permutation

The initial and final permutations are straight Permutation boxes (P-boxes) that are inverses of each other. They have no cryptography significance in DES. The initial and final permutations are shown as follows −

S-des Key Generation Code In California

Round Function

The heart of this cipher is the DES function, f. The DES function applies a 48-bit key to the rightmost 32 bits to produce a 32-bit output.

  • Expansion Permutation Box − Since right input is 32-bit and round key is a 48-bit, we first need to expand right input to 48 bits. Permutation logic is graphically depicted in the following illustration −

  • The graphically depicted permutation logic is generally described as table in DES specification illustrated as shown −

  • XOR (Whitener). − After the expansion permutation, DES does XOR operation on the expanded right section and the round key. The round key is used only in this operation.

  • Substitution Boxes. − The S-boxes carry out the real mixing (confusion). DES uses 8 S-boxes, each with a 6-bit input and a 4-bit output. Refer the following illustration −

  • The S-box rule is illustrated below −

  • There are a total of eight S-box tables. The output of all eight s-boxes is then combined in to 32 bit section.

  • Straight Permutation − The 32 bit output of S-boxes is then subjected to the straight permutation with rule shown in the following illustration:

China

Key Generation

The round-key generator creates sixteen 48-bit keys out of a 56-bit cipher key. The process of key generation is depicted in the following illustration −

Key

The logic for Parity drop, shifting, and Compression P-box is given in the DES description.

DES Analysis

The DES satisfies both the desired properties of block cipher. These two properties make cipher very strong.

  • Avalanche effect − A small change in plaintext results in the very great change in the ciphertext.

  • Completeness − Each bit of ciphertext depends on many bits of plaintext.

During the last few years, cryptanalysis have found some weaknesses in DES when key selected are weak keys. These keys shall be avoided.

DES has proved to be a very well designed block cipher. /cs-16-steam-product-key-generator.html. There have been no significant cryptanalytic attacks on DES other than exhaustive key search.