Tagged Questions
3
votes
1answer
102 views
Alternatives to HMAC + CBC?
I'm looking at using HMAC + CBC. The combination looks like this:
ciphertext = AES256(text, k1)
data = HMAC-SHA256(iv | ciphertext, k2) | iv | ciphertext
Where:
...
4
votes
1answer
81 views
Two way encryption with random IV
I'm attempting to encrypt some information into our database to be later pulled back out and displayed to the user. Searching and reading up on different methods I found a post over at stack exchanged ...
2
votes
1answer
398 views
Format-preserving encryption implementations
I'm looking for a general, free implementation of Format-preserving encryption
as described in this article and on wikipedia.
Possibly in a well established cryptography toolkit.
My intention is to ...
3
votes
3answers
471 views
Which of these 3 AES 128 symmetric encrypt/decrypt routines is most secure?
I am developing a symmetric en-/decryption routine written in c# for a database containing user-specific, sensitive information.
I have narrowed down the implementation to 3 different approaches, ...
1
vote
1answer
107 views
Tips on conceiving safe software messaging platform
I have a personal project in mind in which I plan to use cryptography in order to let the users be confident in the fact that, even if all data get's stolen, it would be virtually impossible to crack ...
5
votes
1answer
193 views
Are there any Implementations of Secure Indexes?
There are several papers about Secure Indexes, for Example "Searchable Symmetric Encryption:
Improved Definitions and Efficient Constructions" and "Secure Indexes". ...
5
votes
1answer
155 views
How can I store confident data with OpenID?
I want to make a system that needs to store some confident user information in a database. I intend on using OpenID for user authentication.
I would like encrypt the data in a way that it can only be ...
8
votes
2answers
509 views
Salting when encrypting?
I was attending a database encryption session at a developers conference. The presenter (who was a published author on the subject) said that MS SQL Server did not support salted hashes in the ...