The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
0answers
21 views

Is the shared object being published safely?

Please have a look at the main() method of the following producer consumer solution : http://java67.blogspot.in/2012/12/producer-consumer-problem-with-wait-and-notify-example.html. It doesn't look ...
1
vote
1answer
28 views

How to search fields encrypted using a unique initialization vector?

I understand that it is good practice to use a unique initialization vector for encrypting each record, but how is it then possible to search on that field? Currently I use a single IV, which means I ...
0
votes
1answer
186 views

openssl- decrypting a base64 string with a key and IV

I'm trying to decrypt a base64 string which has been encrypted with aes256 in openssl. I was given the session key and IV, which were encrypted with my key. I converted them to hexadecimal so that I ...
0
votes
0answers
107 views

How to get Initialization Vector bytes

I am suppose to built an array of bytes using this elements in this order: A symmetric encrypted AES key (with a random key for AES 128, random Initialization Vector for AES 128. Encrypted using AES ...
1
vote
1answer
52 views

Encryption Intialization Vector Failed

I am facing a strange problem, i am using aes encryption with cfb mode. It is going good, I had tested the encryption with fixed IV. But when i use a random IV the problem shows up. I am going in ...
2
votes
2answers
109 views

Encryption Intialization Vector

Using the aes_cfb_encrypt and aes_cfb_decrypt functions, I have the following questions. What is unsigned char *iv (Initialization Vector) in an encryption. Is it required to preserve the *iv for ...
1
vote
2answers
174 views

PyCrypto - How does the Initialization Vector work?

I'm trying to understand how PyCrypto works to use in a project but I'm not fully understanding the significance of the Initialization Vector (IV). I've found that I can use the wrong IV when ...
0
votes
0answers
239 views

How to decrypt an AES encrypted string, without an IV?

I found this Javascript AES encryption library. I put a text and a key, and it's encrypted. They have a php version to decrypt on their website, but I would like to use mcrypt to fit with my cipher ...
2
votes
3answers
332 views

Issues with BlowFish Encryption/Decryption (JBoss Encryption)

Here is a problem I am facing with BlowFish encryption/Decryption. The below code is used for testing BlowFish Encryption/Decryption // Code below omits comments for Brevity import ...
1
vote
2answers
370 views

Why does my AES Cipher throw an InvalidKeyException on init of DECRYPT_MODE

Why would this init succeed: Cipher AESCipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); AESCipher.init(Cipher.ENCRYPT_MODE, secretKey, secRandom); while this fails: Cipher AESCipher = ...
1
vote
3answers
125 views

Initialization Vector Creation

My program connects to a server, the public key of the server is already known. The program then encrypts a AES key together with an initialization vector, and sends it to the server. The server ...
2
votes
1answer
291 views

Proper C# Rijndael IV Usage/Storage

Afternoon, So I'm fairly new to all these encryption methods and usages. I've just started building an Encryption Implementation. Now My method of encryption and decryption seems to be working ...
3
votes
4answers
193 views

Is a SecureRandom really needed for generating Initialization vectors or is Random enough?

For a stream cipher to be secure against repeated key attacks the IV's should not repeat themselves. But does SecureRandom have a benefit over a simple non-secure Random in that respect (or is it just ...
1
vote
0answers
222 views

Initialization vector length in AES

I used AES with AES/CBC/PKCS5Padding with the following encryption and decryption code sections in Android: cipher.init(Cipher.ENCRYPT_MODE, keySpec, new IvParameterSpec(IV1)); ...
1
vote
3answers
840 views

How to AES Encrypt in .NET without an IV

We have a legacy part of our Classic ASP application that use some code which is supposed to encrypt/decrypt strings with Rijndael (AES). This code was found on the Internet here (Rijndael AES Block ...
1
vote
1answer
135 views

Can you attach aesIV to the data encrypted by AES cryptograpy algorithm?

Following the standard instruction for using AES algorithm, I have not been able to encrypt/decrypt some text properly using AES in C#. Though I found that I could if I attached the data called aesIV ...
1
vote
1answer
396 views

Initialization Vector on Cryptography

I have a question regarding how initialization vector works on cryptography. I have bit of knowledge about creating a IV and my question would be this, I know about SecureRandom class so once I ...
6
votes
2answers
610 views

AES encryption how to transport IV

I understand that unique IV is important in encrypting to prevent attacks like frequency analysis. The question: For AES CBC encryption, whats the importance of the IV? has a pretty clear answer ...
2
votes
1answer
131 views

What is the benefit of a unique Initialization Vector?

I use AES encryption with the Rijndael class to encrypt passwords and then store it in a configuration file. I know what is an Initialization Vector. I have read threads on SO (such as Should I use ...
1
vote
1answer
448 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 ...
0
votes
2answers
230 views

Why does phpass return different hashes for the same input string?

I'm used to having hashing algorythms return always the same hash. Why does phpass library return always different hashes? Does it have something to do with the IV? (I never fully understood that ...
2
votes
1answer
121 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
1answer
744 views

Generate random bytes Cocoa?

I need to generate some random data to append to my file for encryption. How would I go about doing this? Would it be sort of the same idea as generating a string of random characters? Something ...
0
votes
3answers
4k views

Need solution for wrong IV length in AES

I'm trying to implement AES in Java and this is the code I use: byte[] sessionKey = {00000000000000000000000000000000}; byte[] iv = {00000000000000000000000000000000}; byte[] plaintext = ...
3
votes
3answers
144 views

Will Initialization Vectors grow in size in the future?

I'm currently using AES (256) with CBC mode to encrypt data. I store the initialization vector with the encrypted data. Right now I'm just adding the IV to the beggining of the encrypted data, then on ...
0
votes
1answer
195 views

Deriving IV (Nonce) securely with MITM attack

I understand that a good nonce is very important with most ciphers. I am using AES-GCM, and am using a 96-bit nonce with a 256-bit AES key. I have asked a few questions on here before about how to ...
9
votes
3answers
1k views

Secret vs. Non-secret Initialization Vector

Today I was doing some leisurely reading and stumbled upon Section 5.8 (on page 45) of Recommendation for Pair-Wise Key Establishment Schemes Using Discrete Logarithm Cryptography (Revised) (NIST ...
3
votes
1answer
816 views

Using Rfc2898DeriveBytes Class to obtain Key and IV

I am just becoming familiar with encryption and the .NET framework. After looking at many examples I am seeing a repeated pattern that confuses when using the .NET Class Rfc2898DeriveBytes. When using ...
3
votes
3answers
441 views

Using a constant IV with single-block encryption

I have lots of small secrets that I want to store encrypted in a database. The database client will have the keys, and the database server will not deal with encryption and decryption. All of my ...
4
votes
3answers
2k views

CTR mode use of Initial Vector(IV)

from what I know, CTR mode doesn't use an Initial Vector. It just takes a counter, encrypts it with a given key and then XOR's the result with the plaintext in order to get the ciphertext. Other ...
3
votes
3answers
537 views

Generate an initialization vector without a good source of randomness

For a password storing plugin (written in C) for Rockbox I need to generate initialization vectors. The problem is that I don't have a good source of randomness. The Rockbox-supplied random() is not ...
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 ...
4
votes
2answers
165 views

What encryption should be used in encoding and how does it affect key and initialisation vectors?

I'm getting my head around encryption and how encoding affects generation of the keys and initialization vectors. I'm working with a TripleDESCryptoServiceProvider which requires 24 byte key and 8 ...
1
vote
6answers
2k views

C# Can't generate initialization vector IV

I get the following error when I try to create a IV initialization vector for TripleDES encryptor. Please see the code example: TripleDESCryptoServiceProvider tripDES = new ...
6
votes
1answer
635 views

Characteristics of an Initialization Vector

I'm by no means a cryptography expert, I have been reading a few questions around Stack Overflow and on Wikipedia but nothing is really 'clear cut' in terms of defining an IV and it's usage. Points I ...