vote up 0 vote down star
1

This is the code I'm currently using. It uses the BouncyCastle Provider.

static
{
   Security.addProvider(new BouncyCastleProvider());
}

protected String encrypt(byte[] keyData, byte[] data) throws Exception {
   X509EncodedKeySpec keyspec = new X509EncodedKeySpec(keyData);
   KeyFactory kf = KeyFactory.getInstance("RSA", "BC");
   PublicKey pk = kf.generatePublic(keyspec);
   Cipher rsa =  Cipher.getInstance("RSA/None/OAEPWithSHA1AndMGF1Padding", "BC");
   rsa.init(Cipher.ENCRYPT_MODE, pk);
   byte[] output = rsa.doFinal(data);
   String result = base64EncodeBytes(output);
   return result;
}

I'm currently getting a

 java.lang.ArrayIndexOutOfBoundsException: too much data for RSA block
    at org.bouncycastle.jce.provider.JCERSACipher.engineDoFinal(Unknown Source)
    at javax.crypto.Cipher.doFinal(DashoA13*..)
    at Encryption.encrypt(RSAToken.java:60)
flag

Using NoPadding is insecure. Use OAEP if you can, PKCS #1 padding (ver. 1.5) if you can't. – sylvarking May 27 at 15:40
I updated it to use OAEPWithSHA1AndMGF1Padding. Thanks for the tip. This is my first venture into encryption. The data we're encrypting (license data) is not critical, but the more I learn about it the better. – ScArcher2 May 27 at 16:21

1 Answer

vote up 5 vote down check

Using RSA to encrypt a lot of data is not a good practice.

The approach taken by cryptographic protocols is to generate a symmetric key, use it to encrypt the data, then encrypt that symmetric key with RSA.

This is how PGP and S/MIME work. It also makes it easy to allow multiple readers to decrypt the data—by encrypting the symmetric key for each intended recipient, rather than encrypting the entire data for each.

link|flag
Is there a security reason for it not being a good practice? AFAIK the reason it's done this way is speed. BouncyCastle simply doesn't support it, doesn't mean it's not an option... – wds May 27 at 15:27
1  
Speed, compatibility, and complexity are all good reasons not to do it this way. I don't know of any vulnerabilities to cryptanalytic methods in current practice, but this approach requires more code to be written by someone who doesn't have a deep understanding of cryptography, so it is definitely less secure. It would be better to use BouncyCastle's S/MIME or PGP libraries; using widely reviewed protocols and implementations is much safer than inventing your own. – sylvarking May 27 at 15:37
This made everything clear to me. Thanks! – ScArcher2 May 27 at 16:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.