vote up 1 vote down star
1

Currently I am receiving the following error when using Java to decrypt a Base64 encoded RSA encrypted string that was made in C#:

javax.crypto.BadPaddingException: Not PKCS#1 block type 2 or Zero padding

The setup process between the exchange from .NET and Java is done by creating a private key in the .NET key store then from the PEM file extracted, created use keytool to create a JKS version with the private key. Java loads the already created JKS and decodes the Base64 string into a byte array and then uses the private key to decrypt.

Here is the code that I have in C# that creates the encrypted string:

public string Encrypt(string value) {
    byte[] baIn = null;
    byte[] baRet = null;
    string keyContainerName = "test";

    CspParameters cp = new CspParameters();
    cp.Flags = CspProviderFlags.UseMachineKeyStore;
    cp.KeyContainerName = keyContainerName;
    RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(cp);

    // Convert the input string to a byte array 
    baIn = UnicodeEncoding.Unicode.GetBytes(value);

    // Encrypt
    baRet = rsa.Encrypt(baIn, false);

    // Convert the encrypted byte array to a base64 string
    return Convert.ToBase64String(baRet);
}

Here is the code that I have in Java that decrypts the inputted string:

public void decrypt(String base64String) {
    String keyStorePath = "C:\Key.keystore";
    String storepass = "1234";
    String keypass = "abcd";
    byte[] data = Base64.decode(base64String);
    byte[] cipherData = null;

    keystore = KeyStore.getInstance("JKS");
    keystore.load(new FileInputStream(keyStorePath), storepass.toCharArray());

    RSAPrivateKey privateRSAKey = (RSAPrivateKey) keystore.getKey(alias, keypass.toCharArray());

    Cipher cipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
    cipher.init(Cipher.DECRYPT_MODE, privateRSAKey);
    cipherData = cipher.doFinal(data);

    System.out.println(new String(cipherData));
}

Does anyone see a step missing or where the padding or item needs to be changed? I have done hours of reading on this site and others but haven't really found a concrete solution.

You're help is vastly appreciated.

Thanks. -Matt

flag
Where is the padding specified in the C# code? How do you know OAEP (which is PKCS #1 ver. 2) isn't being used during encryption? – sylvarking Aug 19 at 23:49
1  
First thing isolate the encryption and encoding into separate probelms. Ie. validate that the decoded Java byte[] is identical with the original C# byte[]. then you can ask wether is an RSA issue or a Base64 issue. As erickson said, likely is the difference in the default PKCS between C# and Java libs. – Remus Rusanu Aug 20 at 0:10
@erickson - the .NET Encrypt() method's second parameter selects the padding - true specifies OAEP and false (used in the example) specifies PKCS #1 ver 1.5. – Michael Burr Aug 20 at 0:11
Where do you set the key for the encryption? – Accipitridae Aug 20 at 7:42
@Remus - The Base64 encoding yields different results each time but RSA is still able to decrypt it. @Accipitridae - The key store is set in the CspParameters in the .NET and ten imported in Java. The encryption and decryption works when the value is encrypted and decrypted in .NET or when it is encrypted and decrypted in Java. However not when the value is passed between. – Matt Shaver Aug 21 at 15:33

3 Answers

vote up 0 vote down

Check that you have correctly exchanged the key.

Trying to decrypt with an incorrect key is indistinguishable from decrypting badly padded data.

link|flag
vote up 0 vote down

Hey Matt,

I've the same problem.

have you already found a solution for your problem?

If yes, would you post it.?

Thanks Eugen

link|flag
vote up 0 vote down

My guess is that the C# version is emitting the bytes in little endian format, and the Java version is importing the bytes expecting them to be in big endian format. Try swapping the bytes in baRet from end to end before you convert them to base 64, and see if your Java program can decrypt them then.

Just a guess.

link|flag

Your Answer

Get an OpenID
or

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