Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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

How to safely store encryption key in a .NET assembly

In order to prevent somebody from grabbing my data easily, I cache data from my service as encrypted files (copy protection, basically). However, in order to do this, I must store the encryption key ...
2
votes
3answers
2k views

What is the best way to store an AES encryption key?

We use Tomcat for our java web application. There is a properties file under WEB-INF folder. AES encryption will be used to generate key and encrypt password. The encrypted password will be stored ...
0
votes
0answers
92 views

How can we create our own SSLSocketfactory for our own Keystore using javax.net.ssl.SSLSocketFactory package?

In the link How to create a BKS (BouncyCastle) format Java Keystore that contains a client certificate chain, I got to know how to create our own SSLSocketFactory for our own Keystore with Apache's ...
0
votes
2answers
228 views

Where to store the key for encrypting and decrypting password

I have a table storing the login info, such as loginID, password, logTime, ... I create 2 stored procedures: one to encrypt and another to compare the password. Encrypting and comparing the password ...