Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am facing issues in decryption in Java. Following is the error encountered:

javax.crypto.BadPaddingException: Blocktype mismatch: -127
    at sun.security.rsa.RSAPadding.unpadV15(RSAPadding.java:311)
    at sun.security.rsa.RSAPadding.unpad(RSAPadding.java:255)

The text is encrypted in .Net with the following code:

public string EncryptString( string inputString, int dwKeySize, string xmlString )
        {
            RSACryptoServiceProvider rsaCryptoServiceProvider = new RSACryptoServiceProvider( dwKeySize );
            rsaCryptoServiceProvider.FromXmlString( xmlString );
            int keySize = dwKeySize / 8;
            byte[] bytes = Encoding.UTF32.GetBytes( inputString );
            int maxLength = keySize - 42;
            int dataLength = bytes.Length;
            int iterations = dataLength / maxLength;
            StringBuilder stringBuilder = new StringBuilder();
            for( int i = 0; i <= iterations; i++ )
            {
                byte[] tempBytes = new byte[ ( dataLength - maxLength * i > maxLength ) ? maxLength : dataLength - maxLength * i ];
                Buffer.BlockCopy( bytes, maxLength * i, tempBytes, 0, tempBytes.Length );
                byte[] encryptedBytes = rsaCryptoServiceProvider.Encrypt( tempBytes, true );

                Array.Reverse( encryptedBytes );
                stringBuilder.Append( Convert.ToBase64String( encryptedBytes ) );               
            }           
            return stringBuilder.ToString();
        }

The code for decrytion is JAVA is:

PrivateKey privKey = readPrivateKey(); // reads the private key 
        Cipher cipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
        cipher.init(Cipher.DECRYPT_MODE, privKey);
            byte[] encryptedBytes = Base64.decodeBase64(encryptedText.getBytes("UTF-32"));
        encryptedBytes = reverse(b); // reverse the bytes 
        byte[] decrypted = cipher.doFinal(encryptedBytes);
        return new String(decrypted);

Am I missing something here? How can I make both way encryption/decryption?

share|improve this question

2 Answers

up vote 0 down vote accepted

This may help:

http://jafetsanchez.com/post/7562162652/rijndael-on-c-and-java

share|improve this answer
thanks. It worked – dvl Jul 14 '11 at 4:25
1  
That appears to be a broken link now. – earlNameless Sep 6 '12 at 3:01

Your C# application is using OAEP padding PKSC v2 while java is using PKSC v1.5 Try changing your C# code to:

ptedBytes = rsaCryptoServiceProvider.Encrypt( tempBytes, false );
share|improve this answer
I changed the code as you mention but still I am not getting the right output. If the text is "ABC", I am getting the decrypted string as "A(3 unknown characters)B(3 unknown characters)C(3 unknown characters)". Am I missing something here? – dvl Apr 17 '11 at 6:28

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.