What mode to use to decrypt RSA message from iPhone in Java? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T19:45:50Zhttp://stackoverflow.com/feeds/question/862571http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/862571/what-mode-to-use-to-decrypt-rsa-message-from-iphone-in-java1What mode to use to decrypt RSA message from iPhone in Java?Deepak2009-05-14T10:16:30Z2009-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#8625931Answer by dfa for What mode to use to decrypt RSA message from iPhone in Java?dfa2009-05-14T10:20:41Z2009-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#8627440Answer by itsteju for What mode to use to decrypt RSA message from iPhone in Java?itsteju2009-05-14T11:06:02Z2009-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#8668430Answer by erickson for What mode to use to decrypt RSA message from iPhone in Java?erickson2009-05-15T03:25:17Z2009-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>