How to decrypt a data using rsa privatekey - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T01:16:19Zhttp://stackoverflow.com/feeds/question/1000347http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1000347/how-to-decrypt-a-data-using-rsa-privatekey-1How to decrypt a data using rsa privatekeySunil2009-06-16T09:06:55Z2009-06-16T11:45:50Z
<p>I am using JAVA
My friend uses SYMBIAN</p>
<p>I and my friend have same rsa modulus. If I encrypt the data using public key then my friend is able to decrypt the same. But if my friend encrypt the data with public key then I am not able to decrypt the data. I got an error as "Data must start with zero "</p>
<pre><code>public static byte[] encrypt(byte[] encrptdByte) throws NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException, IllegalBlockSizeException, BadPaddingException {
byte[] encryptionByte = null;
Cipher cipher = Cipher.getInstance("RSA");
cipher.init(Cipher.ENCRYPT_MODE, publicKey);
encryptionByte = cipher.doFinal(encrptdByte);
return encryptionByte;
}
public static void decrypt(byte[] encrptdByte) throws NoSuchAlgorithmException, NoSuchPaddingException, IllegalBlockSizeException, BadPaddingException, InvalidKeyException {
byte[] encryptionByte = null;
Cipher cipher = Cipher.getInstance("RSA");
cipher.init(Cipher.DECRYPT_MODE, publicKey);
encryptionByte = cipher.doFinal(encrptdByte);
System.out.println("Recovered String ::: " + new String(encryptionByte));
}
</code></pre>
<p>Thanks
Sunil</p>
http://stackoverflow.com/questions/1000347/how-to-decrypt-a-data-using-rsa-privatekey/1000742#10007423Answer by laalto for How to decrypt a data using rsa privatekeylaalto2009-06-16T10:47:00Z2009-06-16T10:47:00Z<p>The <code>decrypt</code> function uses <code>publicKey</code> - where does it come from? Note that data encrypted with a public key must be decrypted with the corresponding private key and not with the same public key. Asymmetric encryption such as RSA have the notion of key pairs where each key in the pair can decrypt data encrypted with the other key, in contrast to symmetric encryption such as AES where the same key works for both encryption and decryption.</p>
http://stackoverflow.com/questions/1000347/how-to-decrypt-a-data-using-rsa-privatekey/1000791#10007913Answer by Atul for How to decrypt a data using rsa privatekeyAtul2009-06-16T11:04:17Z2009-06-16T11:04:17Z<p>To add the previous post, it's impractical to encrypt / decrypt data on a large scale using assymetric encryption (because it's significantly slower than symmetric encryption). The most practical use of assymmetric encryption (like RSA) is to encrypt the symmetric keys (for AES or similar algorithm) that were used to encrypt the data and also to sign a secure hash of the message digest (SHA-256 etc).</p>
<p>The encrypted message is typically sealed in an "envelope" that contains the encrypted message as well as the keys used for encryption. The keys are of course encrypted with the recipients public key, thereby ensuring that only the holder the private key can retrieve the keys.</p>
<p>Finally, the sender of the message may optionally compute a secure hash of the message and encrypt it with the sender's private key. The recipient decrypts the encrypted hash (using the sender's public key) and compares with the computed hash to verify the identity of the sender.</p>