无法通过bouncycastle库在android上生成证书请求

时间:2013-01-27 12:06:01

标签: java android certificate

我现在正在开发Android上的数字签名应用程序。

然而,我没有制作apk文件,因为eclipse显示以下消息

[2013-01-27 20:43:25 - BlowfishCipher] Dx 意外的顶级例外情况: java.lang.IllegalArgumentException:已添加:Lorg / bouncycastle / mozilla / SignedPublicKeyAndChallenge;

[2013-01-27 20:43:25 - BlowfishCipher] Dx at com.android.dx.dex.file.ClassDefsSection.add(ClassDefsSection.java:123) [2013-01-27 20:43:25 - BlowfishCipher] dx at com.android.dx.dex.file.DexFile.add(DexFile.java:163)

我知道错误消息表明重复的jar文件,但我不知道如何 解决它,因为复制的jar(Lorg / bouncycastle / mozilla / SignedPublicKeyAndChallenge;)是有弹性的caslte库的核心文件。

以下java代码显示没有语法错误,但它导致 java.lang.IllegalArgumentException:已添加异常

package exam.blowfishcipher;

import java.io.FileWriter;
import java.io.OutputStreamWriter;
import java.security.KeyPair;
import java.security.SecureRandom;
import javax.security.auth.x500.X500Principal;
import org.bouncycastle.jce.PKCS10CertificationRequest;
import org.bouncycastle.openssl.PEMWriter;
import android.os.Environment;
import chapter6.PKCS10ExtensionExample;



public class PKCS10Generater
{
    public static PKCS10CertificationRequest generateRequest(
            KeyPair pair)
            throws Exception

            {           
             return new PKCS10CertificationRequest(
                     "SHA256withRSA",
                     new X500Principal("CN=Test CA Certificate"),
                     //new X500Principal("CN=end"),
                     pair.getPublic(),
                     null,
                     pair.getPrivate());
            }

    public static void pemEncodeToFile(String filename, Object obj, char[] password)     throws Exception{
        PEMWriter pw = new PEMWriter(new FileWriter(filename));
           if (password != null && password.length > 0) {
               pw.writeObject(obj, "DESEDE", password, new SecureRandom());
           } else {
               pw.writeObject(obj);
           }
           pw.flush();
           pw.close();
    }

    public static void reqGen() throws Exception
    {
        //create the keys
        /*
        KeyPairGenerator kpGen = KeyPairGenerator.getInstance("RSA", "BC");
        //KeyPairGenerator kpGen = KeyPairGenerator.getInstance()

        kpGen.initialize(512, chapter4.Utils.createFixedRandom());

        KeyPair pair=kpGen.generateKeyPair();
        */
        //PKCS10CertificationRequest request = generateRequest(pair);

        KeyPair pair = chapter8.Utils.generateRSAKeyPair();
        PKCS10CertificationRequest request = PKCS    10ExtensionExample.generateRequest(pair);


        pemEncodeToFile(Environment.getExternalStorageDirectory()+"pkcs10.req",     request, null);
        PEMWriter pemWrt = new PEMWriter( new OutputStreamWriter(System.out));
        pemWrt.writeObject(request);
        pemWrt.close();     
    }


}

1 个答案:

答案 0 :(得分:1)

Android已经在系统中包含了BouncyCastle,这就是为什么你在尝试再次添加它时会收到错误的原因(在最近的版本中它实际上是在com.android.org.bouncycastle或者某些类似的,所以你不应该得到错误,理论上)。如果要将它包含在项目中(使用jarjar等),则必须重命名BC包。已经为您做的一个项目是SpongyCastle。尝试使用它而不是常规的BC罐。

https://github.com/rtyley/spongycastle