Tagged Questions
0
votes
1answer
79 views
AES Salting iterations, How many required?
I am trying to execute a simple Encrypt and Decrypt AES and I was trying to use salting. These values will be stored in the DB and retrieved from there. (I cannot use hashing) I am using static key ...
0
votes
2answers
82 views
AES decryption is always null
I tried using salt to decrypt a AES encrypted message but it always returns null value. Can anyone look at it where am i doing wrong?
public static String decryptMessage(String encryptedMessage, ...
3
votes
3answers
398 views
Can i avoid the cipher reinitialization per encrypt/decrypt call when using random salts per encryption?
Edit
Actually reinitializing the cipher is not that slow. Creating the key itself is slow because of the iteration count.
Also, the iteration count is ignored and never used in the encryption ...
3
votes
2answers
548 views
Does storing the salt along with the encrypted file break security?
I am writing an Android application which aims to encrypt and decrypt files using AES 256. I am using AES-CBC mode and PBKDF2 for deriving the AES key from a user entered password. Also, I am ...
0
votes
1answer
91 views
Implementing a file format to be used with Encryption - Cocoa
I need to implement salts in my encryption, but to do so, I need to store it in a file format that I need to create so I can later retrieve it to decrypt. I'm a noob when it comes to encryption. The ...
0
votes
1answer
446 views
AES Encryption using IV,Salt,RFC2898 iteration, Key Generation using SHA1 algorithm in iPhone
I am here again with the problem related AES Encryption. The problem is I need to encrypt the string using AES encryption technique with Intialization Vector, Salt, RFC2898 iteration and Generate a ...
1
vote
2answers
149 views
How to store salt and IV in file cocoa?
So I have implemented salts and IVs, but the decryption is now a bit buggy. Of course, I need both the salt and IV for decryption as well, but the user can't enter that... I need to be able to store ...
2
votes
1answer
119 views
Any good cocoa libraries that include both salt and IV AES Encryption?
I am just polishing up my encryption tool, but I noticed I am missing the salt, which is importnat in order to make the encryption more secure. I am using some built in cocoa methods, but they don't ...
5
votes
3answers
815 views
Salt a key for secure encryption Cocoa?
I was reading a tutorial on how to salt a key to make your encryption secure, but couldn't make much of it. I don't know a lot about cryptography, and need some help. I am using commoncrypto to ...
4
votes
2answers
5k views
Java AES Encryption with salt
Alright, turns out I suck at Encryption/Decryption. I just dont get it.
How can I make Java encrypt String message1 = "hello world"; with String salt = "mySalt"; using AES encryption? also how can I ...
4
votes
1answer
200 views
Encryption: do I need to salt the key when not even storing it at all?
I searched all over the Net, including here on SO: There is a lot of discussion on the need to salt passwords before hashing and storing them.
In case the password is used to compute a key used for ...
2
votes
1answer
718 views
Is my C# RSA/AES/salt/IV best practices approach missing anything?
While I'm no cryptographer, I do consider myself mostly up to date on the best practices regarding [a]symmetric encryption, hashes, and crypto random number generation. I've searched, and found, many ...
4
votes
1answer
3k views
AES Cipher not picking up IV
I am trying to use an IV with AES so that the encrypted text is unpredictable. However, the encrypted hex string is always the same.
I have actually tried a few methods of attempting to add some ...