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.

I am creating a cryptographically-secure IM application in Java. The first step (after establishing a connection) is to exchange a public key (RSA-4096) so that the other party can create a symmetric key (AES-256), encrypt it with the other party's public key, send it over the connection, where the original party can decrypt the symmetric key with their private key and then both parties can exchange messages that are encrypted with the 256-bit key.

My problem is showing up at initializing the KeyPairGenerator, every time I call kpg.initialize(4096,sr) where kpg is the KeyPairGenerator's variable's name, and sr is the SecureRandom I have created, the program crashes and returns a NullPointerException, here is the full code:

CryptoBox.java:

    package crypto;

    import java.security.*;

    public class CryptoBox {
       private static SecureRandom sr = new SecureRandom();
       private static KeyPairGenerator kpg;
       private static KeyPair kp;

       private static Key PubKey;
       private static Key PrivKey;

       @SuppressWarnings("static-access")
       public void init(int keySize){
          try {
               sr.getInstance("SHA1PRNG");
               kpg.getInstance("RSA");
          } catch (NoSuchAlgorithmException e1) {
               // TODO Auto-generated catch block
               e1.printStackTrace();
          }
          try {
               kpg.initialize(keySize,sr); // <-- NullPointerException  
          }catch(Exception e){
               e.printStackTrace();
        return;
          }

          kp = kpg.genKeyPair();
          PubKey = kp.getPublic();
          PrivKey = kp.getPrivate();
       }

    }

Main.java:

package main;

import crypto.CryptoBox;

public class Main {

/**
 * @param args
 */
public static void main(String[] args){
    // TODO Auto-generated method stub
    CryptoBox cb = new CryptoBox();
    cb.init(4096); // <-- NullPointerException
}

}

the full error message is:

java.lang.NullPointerException
at crypto.CryptoBox.init(CryptoBox.java:23)
at main.Main.main(Main.java:15)
share|improve this question
I just edited my code, it works now. Thanks Mene, Reimeus, and Pshemo. Now I just need to get the rest of the thing coded! – Asif_Hirai Aug 1 '12 at 23:24

1 Answer

up vote 1 down vote accepted

Change sr.getInstance("SHA1PRNG"); to sr = KeyPairGenerator.getInstance("SHA1PRNG");

The copmiler probably already told you your mistake, but you choose to ignore it. Do yourself a favor and remove @SuppressWarnings("static-access"), too, that's what compiler errors are good for ;D

share|improve this answer
Thank you, I guess I have to put down C++ for a while and relearn the basics of Java, that was a rookie mistake. Note to Self: Never use SupressWarnings again. – Asif_Hirai Aug 1 '12 at 23:10
1  
Sometimes (but definately not many times) suppresswarnings is legit, e.g. when casting to a typed class. Most of the time the compiler knows best though, and at least Eclipse does not throw too many warnings and errors that are hard to avoid. – owlstead Aug 3 '12 at 23:07

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.