Tagged Questions
1
vote
1answer
88 views
How insecure in practice?
I am in attempt to understand relative insecurity of certain encryption schemes. Particularly of interest is DES and RC2. I know AES is better and should be used to encrypt. But practically, if ...
0
votes
2answers
232 views
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've attached an image of the portion that I'm referring to, and I'd ...
2
votes
1answer
183 views
Regarding matsui's Paper on Linear Cryptanalysis of DES
I's going throught the the Paper by Matsui on Linear Cryptanalysis of DES . In that he says
$NS_{5}(16,15)=12$
And then in the next paragraph he says considering the expansion and permutation phases ...
4
votes
1answer
193 views
S-box Cryptanalytic Resistance
In DES, different S-boxes were tested for cryptanalytic resistance and the most secure one was chosen for the algorithm itself.
How do different S-boxes offer different levels of security against ...
1
vote
2answers
360 views
DES Crack simulation
I wish to simulate an implementation of a DES Cracker using verilog. But every paper I read give only abstract hints but no concrete steps or how really to go about it. How is it usually done? For ...
1
vote
1answer
455 views
Verilog simulation of Data Encryption Standard
I interested in developing DES(in verilog) for my college project.Can i get help in understanding the simulation results of DES encryption and decryption ?
thanks in advance .
4
votes
1answer
410 views
Linear Cryptanalysis
What is the principle of linear cryptanalysis, as applied to a block cipher ? For instance, this page gives the rough outline of differential cryptanalysis.
3
votes
2answers
682 views
Decrypting DES with decrypted and encrypted data
I got two 8 bytestrings
One which is decrypted is:
FF FF FF FF FF FF FF FF
and one which is encrypted is:
16 05 78 B0 0A C2 78 7F
Encryption mode is CipherMode.ECB
I need the key used in DES ...