Tagged Questions
The symmetric-key tag has no wiki summary.
14
votes
9answers
3k views
Symmetric key storage
My company is going to be storing sensitive data for our customers, and will be encrypting data using one of the managed .NET encryption algorithm classes. Most of the work is done, but we haven't ...
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
871 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
658 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 ...
2
votes
1answer
510 views
Cannot find the symmetric key in SQL Server 2008
I have a permissions issue with regard to using a symmetric key under a specific user name when a stored procedure is executed.
Despite running
GRANT CONTROL ON CERTIFICATE::myCert TO myUser
GRANT ...
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 ...
1
vote
1answer
648 views
How can I duplicate a SQL Server symmetric key?
We have a server with a database that has a symmetric key (Database -> Security -> Symmetric Key). We have a backup duplicate databases that we are using as a test databases, but we don't have this ...
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
43 views
SQL Server 2008 R2 User Permissions
I have a user whose role is db_datareader that needs to be able to execute a stored procedure which decrypts some data using our symmetric key and certificate. I've granted EXECUTE perms on the ...
0
votes
0answers
56 views
How to periodically change Symmetric Encryption Key in C# .Net
I have a Symmetric Encryption key in C# code which is used to encrypt my database password using AES Encryption. Everytime the password is needed, i decrypt using the key.
I cannot generate any ...
0
votes
0answers
187 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
0answers
109 views
Can bcp be used to extract/decrypt encrypted SQL Server 2008 data
I'm attempting to extract some tables that have encrypted columns within them and I need to decrypt these columns. The columns are encrypted with a symmetric key. We currently use bcp to submit the ...
0
votes
1answer
334 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
750 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
639 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 ...
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
...