I am trying to encrypt a text file using a .pfx certificate file using :

public void EncryptUsingPublicKey(File in, File out, File publicKeyFile) throws IOException, GeneralSecurityException {

    byte[] encodedKey = new byte[(int)publicKeyFile.length()];
    new FileInputStream(publicKeyFile).read(encodedKey);

    // create public key
    X509EncodedKeySpec publicKeySpec = new X509EncodedKeySpec(encodedKey);
    KeyFactory kf = KeyFactory.getInstance("RSA");
    PublicKey pk = kf.generatePublic(publicKeySpec);

    FileInputStream is = new FileInputStream(in);
    Cipher pkCipher = Cipher.getInstance("RSA");
    pkCipher.init(Cipher.ENCRYPT_MODE, pk);
    CipherOutputStream os = new CipherOutputStream(new FileOutputStream(out), pkCipher);
    copy(is, os);
    os.close();
}

I have two problems:

  1. Where should I store the .pfx file on the device?
  2. Is this function correct?
link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

I don't think that your code will work. PFX files are internally AFAIR PKCS#12 files with can contain multiple certificates and keys. The X509EncodedKeySpec you are using requires to have exactly one certificate in a .CER file (DER/binary format).

Therefore you have the following two options:

  1. Extract the certificate from the PFX file as CER file (e.g. with the GUI tool portecle) or
  2. Try to read the PFX file as a PKCS#12 KeyStore at it is presented here: PKCS12 Java Keystore from CA and User certificate in java

In the end you can include the PFX/CER file as resource into your andoid app: Load file from resource

link|improve this answer
Thanks for this i will check out protecle. – Chris Dec 7 '11 at 16:13
I used portecle to expert the .cer (i choose Export > Head Certifcate and DER Encoded) and now get the error java.lang.IllegalArgumentException: Bad sequence size: 3 But X509CertificateStructure does nto seem to exists? I have been reading this bouncy-castle.1462172.n4.nabble.com/… – Chris Dec 7 '11 at 17:14
feedback

Your Answer

 
or
required, but never shown

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