Tagged Questions
Advanced Encryption Standard (AES) is a cryptographic block cipher algorithm.
41
votes
5answers
71k views
Java 256bit AES Encryption
I need to implement 256 bit AES encryption, but all the examples I have found online use a "KeyGenerator" to generate a 256 bit key, but I would like to use my own passkey. How can I create my own ...
28
votes
4answers
20k views
How to choose an AES encryption mode (CBC ECB CTR OCB CFB)?
Which of them are preferred in which circumstances?
I'd like to see the list of evaluation crtieria for the various modes, and maybe a discussion of the applicability of each criterion.
For ...
26
votes
2answers
20k views
AES Encryption for an NSString on the iPhone
Can anybody point me in the right direction to be able to encrypt a string, returning another string with the encrypted data? (I've been trying with AES256 encryption.) I want to write a method which ...
19
votes
8answers
14k views
17
votes
4answers
32k views
Using AES encryption in C#
I can't seem to find a nice clean example of using AES 128 bit encryption.
Does anyone have some sample code?
16
votes
4answers
425 views
What are best practices for using AES encryption in Android?
Why I ask this question:
I know there have been a lot of questions about AES encryption, even for Android. And there are lots of code snippets if you search the Web. But on every single page, in ...
15
votes
3answers
8k views
AES interoperability between .Net and iPhone?
I need to encrypt a string on the iPhone and send it to a .Net web service for decryption. I am able to encrypt/decrypt on the iPhone and with .Net, but the encrypted strings from the iPhone cannot ...
13
votes
6answers
8k views
AES vs Blowfish for file encryption
I want to encrypt a binary file. My goal is that to prevent anyone to read the file who doesn't have the password.
Wich is the better solution, AES or Blowfish with the same key length? We can assume ...
13
votes
8answers
522 views
Which attacks are possible concerning my security layer concept?
Despite all the advices to use SSL/https/etc. I decided to implement my own security layer on top of http for my application... The concept works as follows:
User registers -> a new RSA Keypair is ...
13
votes
5answers
11k views
What (pure) Python library to use for AES 256 encryption?
I am looking for a (preferably pure) python library to do AES 256 encryption and decryption.
This library should support the CBC cipher mode and use PKCS7 padding according to the answer to an ...
10
votes
3answers
890 views
When compressing and encrypting, should I compress first, or encrypt first?
If I were to AES-encrypt a file, and then ZLIB-compress it, would the compression be less efficient than if I first compressed and then encrypted?
In other words, should I compress first or encrypt ...
8
votes
2answers
2k views
Does iPhone support hardware-accelerated AES Encryption?
I could find references to "hardware-accelerated AES encryption" on an iPhone/iPad. But the APIs that I could find to do the AES encryption (CCCrypt) don't talk about hardware-acceleration at all.
...
8
votes
4answers
5k views
How can I make my AES encryption identical between Java and Objective-C (iPhone)?
I am encrypting a string in objective-c and also encrypting the same string in Java using AES and am seeing some strange issues. The first part of the result matches up to a certain point but then it ...
8
votes
2answers
14k views
How to implement Java 256-bit AES encryption with CBC
I've read the following threads and they've helped a little, but I'm looking for a little more info.
How to write AES/CBC/PKCS5Padding encryption and decryption with Initialization Vector Parameter ...
7
votes
1answer
393 views
How can I decrypt an encrypted MCRYPT_RIJNDAEL_256 value in C#, that was encrypted by mcrypt in PHP?
I am trying to read a Base64-Encoded value from a Database table managed on the Linux side. In that
table there is a column called first_name. On the Linux side I can decrypt this easily by using the ...
7
votes
6answers
2k views
Size of data after AES encryption
I would like to know the size of data after AES encryption so that I can avoid buffering my post-AES data(on disk or memory) mainly for knowing the size.
I use 128 bit AES and javax.crypto.Cipher and ...
7
votes
3answers
846 views
AES acceleration for Java
I want to encrypt/decrypt lots of small (2-10kB) pieces of data. The performance is ok for now: On a Core2Duo, I get about 90 MBytes/s AES256 (when using 2 threads). But I may need to improve that in ...
7
votes
5answers
4k views
“Unlimited Strength” JCE Policy Files
I have an app that uses 256-bit AES encryption which is not supported by Java out of the box. I know to get this to function correctly I install the JCE unlimited strength jars in the security folder. ...
7
votes
6answers
9k views
What's the difference between SHA and AES encryption?
What's the difference between SHA and AES encryption?
7
votes
9answers
2k views
Is it possible to reverse engineer AES256?
Imagine I have this:
$cdata = AES_256($data, $pass);
AES_256 implements the AES algorithm.
If I know the content of $cdata and the content of $data and also have
the AES_256() code, can I reverse ...
7
votes
6answers
3k views
AES encryption of 16 bytes without salt
How secure is it to encrypt 16 bytes of data as a single block with AES? No salt/IV, no mode of operation, millions of different 16 byte blocks encrypted. I don't know enough about crypto but this ...
7
votes
8answers
4k views
Does AES (128 or 256) encryption expand the data? If so, by how much?
I would like to add AES encryption to a software product, but am concerned by increasing the size of the data. I am guessing that the data does increase in size, and then I'll have to add a ...
6
votes
3answers
202 views
Using the same AES key for CBC and ECB
Overview
I'm trying to come up with a way for a server and client to be able to generate a unique IV for each request that is both different for every client and yet deterministic. What I mean by ...
6
votes
2answers
595 views
AES with CommonCrypto uses too much memory - Objective-C
My goal is to be able to, being given a file/folder and a password, encrypt and decrypt it in AES using Objective-C. I'm no crypto nerd or anything, but I chose AES because I found it was pretty ...
6
votes
2answers
307 views
Source and importance of nonce / IV for protocol using AES-GCM
I am making a protocol that uses packets (i.e., not a stream) encrypted with AES. I've decided on using GCM (based off CTR) because it provides integrated authentication and is part of the NSA's ...
6
votes
2answers
4k views
AES CTR 256 Encryption Mode of operation on OpenSSL
Im new to OpenSSL, Can anybody give me a hint in how to initialize AES CTR mode from a C file. I know this is the method´s signature but I am having problems with the parameters, there´s not many ...
6
votes
4answers
2k views
Passphrase, Salt and IV, do I need all of these?
If I am using Rijndael CBC mode, I have no idea why we would need salt.
My understanding is even if people know the password, but he cannot get the data without IV.
So from my perspective, password + ...
6
votes
5answers
3k views
AES difference between iPhone (Objective-c) and Java
I have been tearing my hair out all day trying to solve this...
I have an objective-c client running on the iPhone, connecting to a Java server. The iPhone is encrypting data using AES but I cannot ...
6
votes
3answers
6k views
Getting SlowAES and RijndaelManaged class in .NET to play together
I'm trying to setup AES encryption / decryption using the javascript library SlowAES and the RijndaelManaged class in .NET.
I chose this method after reading this post, where Cheeso has managed to ...
5
votes
3answers
124 views
How to store the key used to encrypt files
I'm playing around with an app to backup files to "the cloud" :) and I want to encrypt the files before I store them. That part I have covered, but as this app will be monitoring folders for change ...
5
votes
2answers
239 views
PHP iOS AES Encryption
I've been having trouble trying to communicate between PHP and my iOS application using AES encryption.
So far, I've considered two methods of implementation. The first was to use OpenSSL.
On the ...
5
votes
1answer
105 views
AES 256 in Blackberry
How can I do AES 256 encryption in Blackberry...
I am using for encryption : but not get data AES256 standard :
private static byte[] encrypt( byte[] keyData, byte[] data ) throws ...
5
votes
2answers
162 views
Android AES in C
I wanna encrypt my files on PC(Windows 7, 64bit) and decrypt 'em on Android.
I use this algo to encrypt files.
http://gladman.plushost.co.uk/oldsite/AES/aes-byte-29-08-08.zip
I encrypt my files on ...
5
votes
2answers
419 views
AES string encryption in objective-c
I am creating an app in objective-c, and it requires text/string encryption. I have so far figured out that AES is the most secure and I have figured out how to convert strings to data and back... ...
5
votes
1answer
207 views
How can I encrypt a string in JavaScript and decrypt that string in C#
I've seen this question asked before, though in these cases the poster wanted to encrypt something (usually a url) on a public facing website, and the responses were mostly "don't!". In my case, ...
5
votes
0answers
130 views
deciphering linux encfs (standard config, 192 bit aes) in Java
Has anyone tried to decipher files encrypted using linux encfs in Java? I'm interested in deciphering the file, and just the file name (not the whole file). I tried:
SecretKeyFactory factory = ...
5
votes
1answer
541 views
Encrypting a file with a weak password, bcrypt or SHA-256 + AES-256?
I start with a weak password (8 lower case characters for ex) and a file. I need to encrypt that file using that password. Result has to be secure against known attacks.
Approach 1: I could hash the ...
5
votes
4answers
290 views
Securely erasing a file using simple methods? [closed]
Possible Duplicate:
C# - Deleting a file permanently
Hello,
I am using C# .NET Framework 2.0. I have a question relating to file shredding.
My target operating systems are Windows 7, ...
5
votes
4answers
2k views
Rewrite Rijndael 256 C# Encryption Code in PHP
I have an encryption/decryption algorithm written in C# - I need to be able to produce the same encryption in PHP so I can send the encrypted text over HTTP to be decrypted on the C# side.
Here is the ...
5
votes
5answers
591 views
Password Cracking in 2010 and Beyond
I have looked a bit into cryptography and related matters during the last couple of days and am pretty confused by now. I have a question about password strength and am hoping that someone can clear ...
5
votes
3answers
619 views
AES key size in Java
Testing RSA to encrypt an AES key, I realized that RSA has only 1 block with a limited size (settable by the programmer) do store the encrypted key.
The question is, when I use:
...
5
votes
5answers
570 views
Cryptography: best practices for keys in memory?
Background:
I got some data encrypted with AES (ie symmetric crypto) in a database. A server side application, running on a (assumed) secure and isolated Linux box, uses this data. It reads the ...
5
votes
2answers
3k views
Java cipher.doFinal() writing extra bytes
I'm implementing encryption / decryption using Java Cipher and AES. Everything is working well except that there's 5 extra bytes written on the call to doFinal(). So, I end up with a correctly ...
5
votes
10answers
12k views
Breaking AES encryption using decrypted data
After a discussion about encryption, a friend of mine challenged me to crack a file he encrypted using AES with a 128bit key.
I know the file was originally a GIF image, so it should start with ...
5
votes
3answers
463 views
Calculate maximum size for encypted data
Is there any way to calculate the largest outcome from an Rijndael encryption with a fixed array lenght?
Encryption method: RijndaelManaged
Padding: PKCS7
CipherMode: CBC
BlockSize 128
KeySize: ...
4
votes
3answers
51 views
Where to store the sensitive data in vb.net securely
I have a vb.net application that uses my gmail smtp server settings and my password to send me the users feedback through the email, (I don't want to show my email to the users)
The problem is I ...
4
votes
0answers
103 views
Is AES encrypting a password with itself more secure than SHA1? [migrated]
This isn't really a practical question, but more a question of curiosity. I heard a CS professor recommend stepping up from md5ing passwords not to SHA1, but to AES encrypting the password using ...
4
votes
1answer
236 views
Java AES: No installed provider supports this key: javax.crypto.spec.SecretKeySpec
I'm trying to set up 128 bit AES encryption, and I'm getting an exception thrown on my Cipher.init:
No installed provider supports this key: javax.crypto.spec.SecretKeySpec
I'm generating the Key on ...
4
votes
2answers
139 views
AES CFB 256 bit encrypt the output is longer than the input?
I want to ask something, what makes a difference in the output below that these two programs vb.net 2010 and the dynamic c? Why the length of the encrypted data different results (vb.net - 16 byte = ...
4
votes
4answers
100 views
T-SQL AES Encryption vs Hashing/Salting for logging in users to website
I have a project and apparently the designers of the software didn't put security into consideration.
The passwords are stored in plain text and transmitted through plain text. So I am left with the ...