How to decrypt a data using rsa privatekey - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T01:16:19Z http://stackoverflow.com/feeds/question/1000347 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1000347/how-to-decrypt-a-data-using-rsa-privatekey -1 How to decrypt a data using rsa privatekey Sunil 2009-06-16T09:06:55Z 2009-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#1000742 3 Answer by laalto for How to decrypt a data using rsa privatekey laalto 2009-06-16T10:47:00Z 2009-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#1000791 3 Answer by Atul for How to decrypt a data using rsa privatekey Atul 2009-06-16T11:04:17Z 2009-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>