Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have inherited Android code that uses the following cipher:

ks = new SecretKeySpec(key, "AES");
ciph = Cipher.getInstance("AES");

As only "AES" is given, I don't know what the keysize, modes, and padding are. I've looked over the Bouncy Castle* documentation, but I can't find where the "AES" instance is described. I'd like to use a more explicit instance description (e.g. "AES/ECB/PCKS5Padding"), if I can.

Does anyone know what the keysize, modes, and padding are of this instance?

Thanks!

*I've read that Android uses Bouncy Castle as its default provider, but I haven't found that anywhere official, so I could be making an unhelpful assumption here.

share|improve this question
1  
1  
Once you figure out what the defaults are, correct that code to explicitly request that mode and padding. It was stupid of Sun to ever allow provider-specific defaults. – GregS Dec 7 '12 at 23:22
@GregS From Sun's point of view it's upto whoever wrote the algorithm implementation, this is good as they should know what sensible defaults are and it works even with algorithms that and modes that haven't even been implemented yet. Of course, Sun then went and used poor defaults for those they did implement and then alternate providers used those defaults for those algorithms for compatibility.... And oh, now it's just real bad. – ewanm89 Dec 7 '12 at 23:50
@ewanm89: I disagree. The point of cryptography standards is not just security but also interoperability. Having provider-specific defaults hinders interoperability. If they must have defaults then they should have been provider-independent, and should simply have been CBC with PKCS5/7 padding for block ciphers. The same holds true for String.getBytes() and the corresponding new String(byte[]) constructor. Those defaults are platform-specific. Big mistake, and will be the cause of the same bugs forever. – GregS Dec 8 '12 at 1:02
1  
@ewanm89 I don't know what you are trying to accomplish here. I just warned the user against using ECB in a comment because ECB mode encryption in general is not suitable for use. Then I get a whole bunch of comments from you, most of them are questionable and only show your ignorance of cryptography in general. Why don't you stop that? Hint: AES keys of 192 are not powers of two, and 512 bit AES keys don't exist. – owlstead Dec 9 '12 at 20:53
show 6 more comments

migrated from security.stackexchange.com Dec 7 '12 at 21:23

2 Answers

up vote 3 down vote accepted

Java defaults to "AES/ECB/PKCS5Padding" by default, as specified by the Oracle documentation.

If no mode or padding is specified, provider-specific default values for the mode and padding scheme are used. For example, the SunJCE provider uses ECB as the default mode, and PKCS5Padding as the default padding scheme for DES, DES-EDE and Blowfish ciphers. This means that in the case of the SunJCE provider:

Cipher c1 = Cipher.getInstance("DES/ECB/PKCS5Padding"); and
Cipher c1 = Cipher.getInstance("DES"); are equivalent statements.

See creating a Cipher object in the Oracle documentation.


I've just checked using a debugger myself. At least for Android 4.0 it seems that Android defaults to the same encryption and padding mode (as I expected). The outcome using the default provider of a single (00-valued) byte is a padded plain text with value 000F0F0F0F0F0F0F0F0F0F0F0F0F0F0F in hexadecimals. This is clearly PKCS#5 padding, or more correctly PKCS#7 padding which is the identical padding for 16-byte block ciphers.

Very easy to test, a big pain to get my debugger running on the Android simulator using an upgraded 64 bit system.

share|improve this answer
1  
It's interesting that that documentation blurb is so old it doesn't mention AES which came out in 2001. – GregS Dec 8 '12 at 1:05
@GregS Oracle's documentation is a breeze compared to most other crypto modules, but as crypto documentation is horribly bad in general (see e.g. PHP or Microsoft APIs) it is still rather less than perfect. Don't expect any crypto advice either. – owlstead Dec 8 '12 at 3:07
@GregS updated my answer, in case you are interested... – owlstead Dec 9 '12 at 23:12
Selected as correct answer because documentation and actual test results are given. Thanks for the effort! – bgt421 Dec 10 '12 at 3:22

From what I know, In java it stands for AES in ECB mode without padding . And I think it's the same on android. I would recomend you running a simple test encrypt something on android and decrypt it using AES/ECB/NoPadding using Java or android. Plus if you don't see any IV in this app it's another, point in this direction.

share|improve this answer
3  
Just pulled apart an instance in android debugger and can confirm it is ECB mode with no padding by default. – ewanm89 Dec 7 '12 at 22:02
1  
The Sun/Oracle JDK will default to "PKCS5Padding" and I would be very very surprised if Android does not keep to that same standard. How did you test? Because the Cipher object itself does not return any answer as far as I know. – owlstead Dec 8 '12 at 0:21
If they don't keep to that standard many many pieces of code will have to be adjusted for sure. – owlstead Dec 8 '12 at 0:22
@owlstead: with the Eclipse debugger running Oracle Java 1.6 I could see non-public fields of the Cipher object. The <object>.spi.core.padding field was an instance of com.sun.sun.crypto.provider.PKCS5Padding, verifying your claim. I would imagine something similar is true on Android. – GregS Dec 8 '12 at 0:52
@GregS as far as I know they use some deformed version of Bouncy Castle on Android as implementation, so it could be different. – owlstead Dec 8 '12 at 3:04
show 8 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.