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.

UPDATED

package service;

/**
 *
 * @author SiNiStEr
 */
import java.io.*;
import java.security.*;
import javax.crypto.*;
import org.apache.commons.codec.binary.Hex;

class EDCRYPT {

public static void main(String args[]) throws Exception
    {
EDCRYPT ed= new EDCRYPT();
System.out.print(ed.decrypt(ed.encrypt("Hello")));
}
public String encrypt(String plaintext) throws Exception{
    Cipher cipher=null;
PublicKey publicKey=null;
        try {

            KeyPairGenerator keygenerator = KeyPairGenerator.getInstance("RSA");
            SecureRandom random = SecureRandom.getInstance("SHA1PRNG", "SUN");
            keygenerator.initialize(1024, random);

            KeyPair keypair = keygenerator.generateKeyPair();
           // PrivateKey privateKey = keypair.getPrivate();
             publicKey= keypair.getPublic();
            cipher = Cipher.getInstance("RSA");
        } catch (Exception e) {
        }

        cipher.init(Cipher.ENCRYPT_MODE, publicKey);
        String st = "roseindia";
        byte[] cleartext = null;
        cleartext = st.getBytes("UTF-8");

    byte[] encrypted = blockCipherPublic(cleartext,Cipher.ENCRYPT_MODE);
//return encrypted.toString();
    char[] encryptedTranspherable = Hex.encodeHex(encrypted);
    return new String(encryptedTranspherable);
}
///////////////////////////////////////////////////////////////////////////////


public String decrypt(String encrypted) throws Exception{
  Cipher cipher=null;
PrivateKey privateKey=null;
        try {

            KeyPairGenerator keygenerator = KeyPairGenerator.getInstance("RSA");
            SecureRandom random = SecureRandom.getInstance("SHA1PRNG", "SUN");
            keygenerator.initialize(1024, random);

            KeyPair keypair = keygenerator.generateKeyPair();
            privateKey = keypair.getPrivate();
           //  publicKey= keypair.getPublic();
            cipher = Cipher.getInstance("RSA");
        } catch (Exception e) {
        }

        cipher.init(Cipher.ENCRYPT_MODE, privateKey);
    byte[] bts = Hex.decodeHex(encrypted.toCharArray());

    byte[] decrypted = blockCipherPrivate(bts,Cipher.DECRYPT_MODE);

    return new String(decrypted,"UTF-8");
}

////////////////////////////////////////////////////////////////////////////////////

private byte[] blockCipherPublic(byte[] bytes, int mode) throws IllegalBlockSizeException, BadPaddingException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException{
    // string initialize 2 buffers.
    // scrambled will hold intermediate results
   Cipher cipher=Cipher.getInstance("RSA");
PublicKey publicKey=null;
        try {

            KeyPairGenerator keygenerator = KeyPairGenerator.getInstance("RSA");
            SecureRandom random = SecureRandom.getInstance("SHA1PRNG", "SUN");
            keygenerator.initialize(1024, random);

            KeyPair keypair = keygenerator.generateKeyPair();
           // PrivateKey privateKey = keypair.getPrivate();
             publicKey= keypair.getPublic();

        } catch (Exception e) {
        }
    byte[] scrambled = new byte[0];

    // toReturn will hold the total result
        cipher.init(Cipher.ENCRYPT_MODE, publicKey);

    byte[] toReturn = new byte[0];
    // if we encrypt we use 100 byte long blocks. Decryption requires 128 byte long blocks (because of RSA)
    int length = (mode == Cipher.ENCRYPT_MODE)? 100 : 128;

    // another buffer. this one will hold the bytes that have to be modified in this step
    byte[] buffer = new byte[length];

    for (int i=0; i< bytes.length; i++){

        // if we filled our buffer array we have our block ready for de- or encryption
        if ((i > 0) && (i % length == 0)){
            //execute the operation
            scrambled = cipher.doFinal(buffer);
            // add the result to our total result.
            toReturn = append(toReturn,scrambled);
            // here we calculate the length of the next buffer required
            int newlength = length;

            // if newlength would be longer than remaining bytes in the bytes array we shorten it.
            if (i + length > bytes.length) {
                 newlength = bytes.length - i;
            }
            // clean the buffer array
            buffer = new byte[newlength];
        }
        // copy byte into our buffer.
        buffer[i%length] = bytes[i];
    }
        scrambled = cipher.doFinal(buffer);

    // final step before we can return the modified data.
    toReturn = append(toReturn,scrambled);

    return toReturn;


}

///////////////////////////////////////////////////////////////////////////////////////

private byte[] blockCipherPrivate(byte[] bytes, int mode) throws IllegalBlockSizeException, BadPaddingException, NoSuchAlgorithmException, NoSuchPaddingException, InvalidKeyException{
    // string initialize 2 buffers.
    // scrambled will hold intermediate results
   Cipher cipher=Cipher.getInstance("RSA");
PrivateKey privateKey=null;
        try {

            KeyPairGenerator keygenerator = KeyPairGenerator.getInstance("RSA");
            SecureRandom random = SecureRandom.getInstance("SHA1PRNG", "SUN");
            keygenerator.initialize(1024, random);

            KeyPair keypair = keygenerator.generateKeyPair();
           privateKey = keypair.getPrivate();
            // publicKey= keypair.getPublic();

        } catch (Exception e) {
        }
    byte[] scrambled = new byte[0];

    // toReturn will hold the total result
        cipher.init(Cipher.ENCRYPT_MODE, privateKey);

    byte[] toReturn = new byte[0];
    // if we encrypt we use 100 byte long blocks. Decryption requires 128 byte long blocks (because of RSA)
    int length = (mode == Cipher.ENCRYPT_MODE)? 100 : 128;

    // another buffer. this one will hold the bytes that have to be modified in this step
    byte[] buffer = new byte[length];

    for (int i=0; i< bytes.length; i++){

        // if we filled our buffer array we have our block ready for de- or encryption
        if ((i > 0) && (i % length == 0)){
            //execute the operation
            scrambled = cipher.doFinal(buffer);
            // add the result to our total result.
            toReturn = append(toReturn,scrambled);
            // here we calculate the length of the next buffer required
            int newlength = length;

            // if newlength would be longer than remaining bytes in the bytes array we shorten it.
            if (i + length > bytes.length) {
                 newlength = bytes.length - i;
            }
            // clean the buffer array
            buffer = new byte[newlength];
        }
        // copy byte into our buffer.
        buffer[i%length] = bytes[i];
    }
        scrambled = cipher.doFinal(buffer);

    // final step before we can return the modified data.
    toReturn = append(toReturn,scrambled);

    return toReturn;


}


/////////////////////////////////////////////////////////////////////////////////////
private byte[] append(byte[] prefix, byte[] suffix){
    byte[] toReturn = new byte[prefix.length + suffix.length];
    for (int i=0; i< prefix.length; i++){
        toReturn[i] = prefix[i];
    }
    for (int i=0; i< suffix.length; i++){
        toReturn[i+prefix.length] = suffix[i];
    }
    return toReturn;
}

//////////////////////////////////////////////////////////////////////////////////////////
}
share|improve this question
1  
Why are you encrypting the message with RSA? The standard pattern is to create a random symmetric key, encrypt that key with RSA, and encrypt the message itself with the symmetric key. – CodesInChaos May 3 '12 at 17:06
i'm very newbie for rsa algorithm, we have been told to implement the encryption using rsa. Please help me to do this – cool_ravi May 3 '12 at 17:10
This is just bad code and you're not explaining what you're doing. Please update your question. – c0d3Junk13 Mar 13 at 20:19

2 Answers

In the blockCipher methods, you don't call any cipher.init method. add it after

 Cipher cipher=Cipher.getInstance("RSA"); and it should work
share|improve this answer
now, i'm getting javax.crypto.IllegalBlockSizeException : Data must not be longer than 117 bytes at 128 line – cool_ravi May 3 '12 at 17:25
@coders_zone Use a shorter message. – erickson May 3 '12 at 17:29
i'm using Hello message, please check my updated code – cool_ravi May 3 '12 at 17:36
Data must start with zero error, need help to solve it ... – cool_ravi May 3 '12 at 18:00
please help me.. i'll very much appreciate your help !! – cool_ravi May 3 '12 at 18:49

There are two big problems.

The IllegalStateException is pretty straightforward. In blockCipher() you create a new Cipher instance, but you don't call init() on it before trying to use it.

The other main problem is that you are generating new key pairs all over, but don't save them. How will you decrypt the message without the corresponding private key?

The blockCipher() method is a needless complication. RSA is not for encrypting bulk data. It's for key transport (encrypting passwords or other symmetric keys). If you aren't using the wrap() and unwrap() methods of an RSA Cipher, you are probably doing something wrong.

If this is for an assignment, your teacher might expect you to use doFinal() instead, but in that case, I don't think it would be unreasonable to throw an exception if the "message" you are encrypting is too long for a single RSA encryption operation. The RSA specification actually says that this is what you should do.


I am not going to re-write your code, especially since you are almost there. But here is how I'd structure a solution.

In your main method:

  1. Generate a key pair.
  2. Pass the message and the public key to the encrypt method; keep the resulting cipher text.
  3. Pass the cipher text and the private key to the decrypt method; keep the resulting plain text.
  4. Compare the decrypted plain text and the original message to see if it worked.

In the encrypt method:

  1. Create a new cipher instance.
  2. Initialize the cipher with the public key.
  3. Pass the message to the cipher's encryption method and return the result. (Note that an exception will be thrown if the message is too long; that's fine!)

In the decrypt method:

  1. Create a new cipher instance.
  2. Initialize the cipher with the private key.
  3. Pass the cipher text to the cipher's decryption method and return the result.
share|improve this answer
please help me..!! what should i correct in my code. – cool_ravi May 3 '12 at 17:17
please check my updated code – cool_ravi May 3 '12 at 17:36
i'm getting error Data must start with zero – cool_ravi May 3 '12 at 17:59
@coders_zone Do you have it working now? If not, is the error on encryption or decryption? (And, if it's not solved why did you accept an answer?) – erickson May 3 '12 at 18:39
it's still unsolve, i marked it, because, followed the step, and solve the problem to some extent. Now, it showing the error at the decryption time.. need help !! please help me... Data must start with zero is the current error – cool_ravi May 3 '12 at 18:45
show 1 more comment

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.