Tagged Questions

5
votes
2answers
1k views

Why is AES more secure than DES?

I am beginning to learn crypto algorithms and I understand how the above mentioned algorithms work. Is it that the key length of AES is longer? Which steps of AES encryption makes it less vulnerable ...
1
vote
2answers
59 views

How to avoid a shared symmetric key and its maintenance issues?

A business partner has implemented the following: Website A uses a symmetric key to encrypt user contact data. Website A redirects to 3rd party Website B with encrypted data in querystring. Website ...
0
votes
3answers
46 views

InCorrect output using Rfc2898DeriveBytes for password hashing

I am certainly sure i am doing something wrong here. Using .net implementation of the algorithm i hash the password to store in database along with the salt used to hash. On validating the same ...
0
votes
0answers
35 views

CSP using FDR - Modeling an attack on a symmetric key?

I'm trying to use the FDR tool to model a protocol using CSP, but I am having difficulties understanding its internals, even though I already read a lot of stuff about it. Does anyone know of an ...
0
votes
1answer
285 views

Why in brute force attack on Symmetric Algorithm there is 50 percent chance of finding the key after half of the attempts?

Any cryptography text mentions that in brute force attack on Symmetric Algorithm there is 50 percent chance of finding the key after half of the attempt. For e.g. DES with 56 bit key would have 50 ...
0
votes
1answer
384 views

how to wrap/store the key of TripleDESCryptoServiceProvider

I'm using DES encryption, and I want to store the key of TripleDESCryptoServiceProvider. But the key consists of (Key + IV), I was trying to save them in an XML file using XmlTextWriter ...