Bouncycastle PGP加密错误非法密钥大小

时间:2016-04-18 16:41:56

标签: java macos encryption bouncycastle pgp

我目前正在用java编写加密消息服务,我正在使用bouncycastle PGP库。我编写了一个生成密钥对的测试程序,并加密/解密消息。这工作了一段时间,但它最近停止在解密阶段,给我一个InvalidKeyException。

我做了一些研究并下载了JCE .jar文件并将它们导入我的项目(通过Eclipse项目 - >属性 - >添加外部JAR)。我看到对于Windows用户来说,它们应该放在java库中的特定文件夹中,但我在Mac上找不到类似的文件夹。我尝试查看usr / library文件夹,但找不到任何有用的东西。

有人在Mac上解决了这个问题吗?

编辑:这是我主要测试函数的一些代码

// decrypt
byte[] decrypted = PGPEncryptDecrypt.decrypt(encFromFile, secKey, pass.toCharArray());

这是我的解密方法(这不是我写的,但是我创建了一个PGPEncryptDecrypt类来保存相关的静态方法,它对我有用)

public static byte[] decrypt(byte[] encrypted, InputStream keyIn, char[] password)
        throws IOException, PGPException, NoSuchProviderException {
    InputStream in = new ByteArrayInputStream(encrypted);

    in = PGPUtil.getDecoderStream(in);

    PGPObjectFactory pgpF = new PGPObjectFactory(in);
    PGPEncryptedDataList enc = null;
    Object o = pgpF.nextObject();

    //
    // the first object might be a PGP marker packet.
    //
    if (o instanceof PGPEncryptedDataList) {
        enc = (PGPEncryptedDataList) o;
    } else {
        enc = (PGPEncryptedDataList) pgpF.nextObject();
    }



    //
    // find the secret key
    //
    Iterator it = enc.getEncryptedDataObjects();
    PGPPrivateKey sKey = null;
    PGPPublicKeyEncryptedData pbe = null;
    PGPSecretKeyRingCollection pgpSec = new PGPSecretKeyRingCollection(
            PGPUtil.getDecoderStream(keyIn));

    while (sKey == null && it.hasNext()) {
        pbe = (PGPPublicKeyEncryptedData) it.next();

        sKey = findSecretKey(pgpSec, pbe.getKeyID(), password);
    }

    if (sKey == null) {
        throw new IllegalArgumentException(
                "secret key for message not found.");
    }

    InputStream clear = pbe.getDataStream(sKey, "BC");



    PGPObjectFactory pgpFact = new PGPObjectFactory(clear);

    PGPCompressedData cData = (PGPCompressedData) pgpFact.nextObject();

    pgpFact = new PGPObjectFactory(cData.getDataStream());

    PGPLiteralData ld = (PGPLiteralData) pgpFact.nextObject();

    InputStream unc = ld.getInputStream();

    ByteArrayOutputStream out = new ByteArrayOutputStream();
    int ch;

    while ((ch = unc.read()) >= 0) {
        out.write(ch);

    }

    byte[] returnBytes = out.toByteArray();
    out.close();
    return returnBytes;
}

错误指向findSecretKey(在PGPEncryptDecrypt类中)方法,如下所示

public static PGPPrivateKey findSecretKey(
        PGPSecretKeyRingCollection pgpSec, long keyID, char[] pass)
        throws PGPException, NoSuchProviderException {
    PGPSecretKey pgpSecKey = pgpSec.getSecretKey(keyID);

    if (pgpSecKey == null) {
        return null;
    }

    return pgpSecKey.extractPrivateKey(pass, "BC");
}

当我第一次实现这些功能时,这些功能都完美无缺,但它们停止了工作。

1 个答案:

答案 0 :(得分:0)

对于其他任何人来说,我在挖掘了一下之后找到了答案。

我做的是打开终端,进入根库(作为sudo),找到合适的java库,并从我的downloads文件夹中手动复制到相应的java安全文件夹

路径是Library / Java / JavaVirtualMachines / jdk1.7.0_80.jdk / Contents / Home / jre / lib / security

然后在那里我做了两个cp filename命令来复制相应的文件