Questions tagged [s-des]

Simplified DES is a toy variant of the DES cipher introduced by Edward F. Schaefer in 1996 for educational purposes. It has an 8-bit block size and a 10-bit key, and uses two rounds, with two 4x2 bit S-boxes.

S-DES, or Simplified DES, is a "toy" variant of the DES block cipher developed and published by Edward F. Schaefer in 1996 for educational purposes. It has an 8-bit block size and a 10-bit key, and uses two rounds, with two 4x2 bit S-boxes.

S-DES is not designed to be a secure block cipher, and indeed it is easily broken using various techniques, including but not limited to brute force search of the keyspace. It is, however, useful for demonstrating the principles of operation of the DES cipher, and for practicing cryptanalytic techniques against a simple and easily attacked target.

References:

5 questions
2
votes
1 answer

Extracting key bits from linear cryptanalysis equation for SDES

From the linear cryptanalysis of SDES, we get a linear equation consisting the K[1, 3] of the round key 1 and 2. From this how will I retrieve the key bit? How do we solve the linear equation we get from the linear cryptanalysis to predict the key…
levi1696
  • 73
  • 1
  • 5
2
votes
2 answers

P10 to P8 in S-DES

I am new to cryptography. During my learning I am facing a problem with S-DES. I am confused where P10 to P8 come from, and I’m confused about the processing of this algorithm. Does anyone have any good article/paper/reference which enables me to…
Sagar Upadhyay
  • 123
  • 1
  • 5
1
vote
2 answers

Cryptanalysis of S-DES - Equations

I am trying to derive equations for s and t in the cryptanalysis of a Simple DES algorithm, but I haven't been able to deduce it. I have attached an image of the portion that I'm referring to, and I would appreciate it if someone could explain as to…
GamingX
  • 647
  • 2
  • 7
  • 9
1
vote
1 answer

Simplied DES why 10-bit key?

In Simplified DES algorithm, the plain text is 8-bit & the key is 10-bit, why is that, why can't both be of 8-bits each?
Mark Ben
  • 13
  • 1
  • 4
0
votes
1 answer

Ciphertext-only attack on Simplified DES

Is it possible to deduce the plaintext block or the key, given only a Simplified-DES ciphertext block (e.g. c=01110110)? I'm reading Cryptography And Network Security, by William Stallings and I'm bit confused.
user6519