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 ...
3
votes
2answers
868 views

SQL Server 2008 + PCI Compliance? Pertains to PCI, as well as Symmetric keys!

I've never had to deal with PCI compliance before. I've been reading their documentation and it says I need to protect the credit card number, expiration date and the card holder's name. No storage ...
3
votes
1answer
656 views

Why does changing one bit in a Triple DES key or initial value not give different encrypted data?

I'm using pyDes to encrypt some data. I wanted to demonstrate that if you change even one bit in the key or initial value, the encrypted data would be totally different. I set up the 16-byte key to ...
3
votes
2answers
2k views

SQL Server 2005 - Restoring an encrypted DB on a different server

I have backed up an encrypted DB (symmetric key/certificate) and restored it on a different server. Unfortuantely we're having problems with the decryption... hoping someone can help. In the ...
3
votes
6answers
3k views

What is the performance difference of pki to symmetric encryption?

We are looking to do some heavy security requirements on our project, and we need to do a lot of encryption that is highly performant. I think that I know that PKI is much slower and more complex ...
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
0answers
185 views

Using shared symmetric key for encryption and signing in SoapUI

I am trying to use SoapUI to test a WCF service i have configured to use message security with a shared symmetric key. This key is used to encrypt and sign the message body in addition to other ...
0
votes
1answer
333 views

Decrypt ssl network packets with the keys acquired from openssl api

I have a client application that runs on my computer, which uses openssl to communicate with server using SSLv3. I need to see what they talk so I basically want to edit and recompile openssl library ...
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
3answers
749 views

SQL Symmetric Key and opening it from C#

I am trying to encrypt data in SQL Server via a Symmetric key. When a user submits data through a web form, I would like for the data to be encrypted, using my Symmetric Key that I have saved inside ...
0
votes
2answers
638 views

RijndaelManaged Key generation

I need to encrypt data and store it in a file and later be able to decrypt it back. For this I am using RijndaelManaged class. Now I do not want to keep the key hardcoded in the code. After some ...