What mode to use to decrypt RSA message from iPhone in Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T19:45:50Z http://stackoverflow.com/feeds/question/862571 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/862571/what-mode-to-use-to-decrypt-rsa-message-from-iphone-in-java 1 What mode to use to decrypt RSA message from iPhone in Java? Deepak 2009-05-14T10:16:30Z 2009-05-19T16:37:58Z <p>My friend has encrypted data with PKCS1 padding on an iPhone.</p> <p>How can I decrypt that data in Java?</p> <p>Java requires me to specify "algorithm/ciphermode/padding". The padding and the algorithm are known, but neither of us knows the cipher mode; it is not specified when encrypting on the iPhone.</p> http://stackoverflow.com/questions/862571/what-mode-to-use-to-decrypt-rsa-message-from-iphone-in-java/862593#862593 1 Answer by dfa for What mode to use to decrypt RSA message from iPhone in Java? dfa 2009-05-14T10:20:41Z 2009-05-14T10:20:41Z <p>using <a href="http://www.bouncycastle.org/java.html" rel="nofollow">bouncy castle</a> and <a href="http://www.java2s.com/Tutorial/Java/0490%5F%5FSecurity/RSAexamplewithPKCS1Padding.htm" rel="nofollow">this code</a> should be simple</p> http://stackoverflow.com/questions/862571/what-mode-to-use-to-decrypt-rsa-message-from-iphone-in-java/862744#862744 0 Answer by itsteju for What mode to use to decrypt RSA message from iPhone in Java? itsteju 2009-05-14T11:06:02Z 2009-05-14T11:06:02Z <p>So whether the program will work?? One more thing how to get modulus from the public key generated by bouncy castle – sunil</p> http://stackoverflow.com/questions/862571/what-mode-to-use-to-decrypt-rsa-message-from-iphone-in-java/866843#866843 0 Answer by erickson for What mode to use to decrypt RSA message from iPhone in Java? erickson 2009-05-15T03:25:17Z 2009-05-15T03:25:17Z <p>RSA doesn't really use a "mode"; modes are for block ciphers.</p> <p>The built-in Sun provider will accept "RSA/ECB/PCKS1Padding" as a <code>Cipher</code> name. ECB is "Electronic Code Book", which doesn't mix any information from "block" to block; it is sort of "no cipher mode."</p> <p>Other providers accept "None" as a cipher mode with RSA.</p> <p>BouncyCastle is a good provider. I'm not sure why you would need to take the trouble to install it in this case, however. The SunJCE provider will work fine.</p>