我有一种情况,我按照他们网站上列出的说明,使用 OpenSSL 生成了一个用于gdcmanon的公钥/私钥对。具体来说,我使用以下命令为 gdcmanon 生成密钥
$ openssl genrsa -out CA_key.pem
$ openssl req -new -key CA_key.pem -x509 -days 365 -out CA_cert.cer
然后我能够按照他们的指示使用
gdcmanon -c CA_cert.cer -e original.dcm original_anonymized.dcm
并使用 decrpyt 文件
gdcmanon -k CA_key.pem -d original_anonymized.dcm orginal_deanonymized.dcm
然后,我想使用该密钥来解码 Java 中相应 DICOM 文件中的一些信息。在努力获得 Java 中的密钥之后,我找到了这个页面,并且能够通过以下调用创建一个不会导致我的 Java 程序崩溃的密钥
openssl pkcs8 -topk8 -inform PEM -outform DER -in CA_key.pem -out CA_key.pkcs8.pem -nocrypt
毕竟,经过大量阅读,我已经生成了以下 Java 代码
public static String decode(byte[] encryptedData) {
Key key = readPEMKey(new File("CA_key.pkcs8.pem"));
//Key key = readPEMKey(new File("CA_key.pem"));
try {
Cipher c = Cipher.getInstance("RSA");
c.init(Cipher.DECRYPT_MODE, key);
byte[] decValue = c.doFinal(encryptedData);
String decryptedValue = new String(decValue);
return decryptedValue;
}
catch (Exception e) {
e.printStackTrace();
}
return null;
}
private static Key readPEMKey(File key) {
DataInputStream dis = null;
BufferedReader reader = null;
try {
/*
reader = new BufferedReader(new FileReader(key));
String privKeyPEM = "";
String line;
while ((line = reader.readLine()) != null) {
if (!line.equals("-----BEGIN RSA PRIVATE KEY-----") && !line.equals("-----END RSA PRIVATE KEY-----"))
privKeyPEM += line + "\n";
}
byte[] encoded = new BASE64Decoder().decodeBuffer(privKeyPEM);
*/
dis = new DataInputStream(new BufferedInputStream(new FileInputStream(key)));
byte[] encoded = new byte[(int) key.length()];
dis.readFully(encoded);
// PKCS8 decode the encoded RSA private key
PKCS8EncodedKeySpec keySpec = new PKCS8EncodedKeySpec(encoded);
KeyFactory kf = KeyFactory.getInstance("RSA");
PrivateKey privKey = kf.generatePrivate(keySpec);
return privKey;
}
catch (Exception e) {
e.printStackTrace();
}
finally {
if (reader != null) {try {reader.close();} catch (Exception e) {e.printStackTrace();}}
if (dis != null) {try {dis.close();} catch (Exception e) {e.printStackTrace();}}
}
return null;
}
我尝试了多种方法来读取和处理用于以各种方式解码的私钥(从注释掉的部分可以看出),但是,我还没有找到可以通过 encryptedData 解密的解决方案。如果我将密码与 RSA 算法一起使用,我会得到以下堆栈跟踪
javax.crypto.IllegalBlockSizeException: Data must not be longer than 256 bytes
at com.sun.crypto.provider.RSACipher.a(DashoA13*..)
at com.sun.crypto.provider.RSACipher.engineDoFinal(DashoA13*..)
at javax.crypto.Cipher.doFinal(DashoA13*..)
at my.app.decode(Application.java:124)
这在 byte[] decValue = c.doFinal(encryptedData); 行失败。
如果我使用带有 AES 算法的密码,我会得到以下堆栈跟踪
java.security.InvalidKeyException: No installed provider supports this key: sun.security.rsa.RSAPrivateCrtKeyImpl
at javax.crypto.Cipher.a(DashoA13*..)
at javax.crypto.Cipher.init(DashoA13*..)
at javax.crypto.Cipher.init(DashoA13*..)
at my.app.Application.decode(Application.java:123)
这在 c.init(Cipher.DECRYPT_MODE, key); 行失败。
我已经安装了 Java 6 的 JCE(我正在使用)。我不知道我做错了什么。有人可以指出我正确的方向。
谢谢
更新
我一直在努力解决这个问题,也尝试过 Bouncy Castle,但还没有结果。这是我在使用 Bouncy Castle 时的第一次尝试。
BufferedReader reader = new BufferedReader(new FileReader(new File("CA_key.pem")));
PEMParser parser = new PEMParser(reader);
PEMKeyPair keyPair = (PEMKeyPair)parser.readObject();
AsymmetricKeyParameter privKeyParams = PrivateKeyFactory.createKey(keyPair.getPrivateKeyInfo());
AsymmetricKeyParameter publicKeyParams = PublicKeyFactory.createKey(keyPair.getPublicKeyInfo());
parser.close();
RSAEngine e = new RSAEngine();
e.init(false, publicKeyParams);
byte[] decValue = e.processBlock(encryptedData, 0, encryptedData.length);
我再次遇到 processBlock 方法 org.bouncycastle.crypto.DataLengthException: input too large for RSA cipher 的异常。我认为这与我之前遇到的问题相同。我在这里真的不知所措,因为 gdcmanon 工具可以仅使用 CA_key.pem 文件清楚地解密此字符串,因为这是唯一的输入(要解密的文件除外)。我一直在 gdcmanon 源代码中四处寻找,看起来它以某种方式使用 AES 256 密钥,但我只是不知道如何从我生成的 RSA 密钥中获得它。有人可以指出我正确的方向吗?
编辑
我一直在浏览 gdcmanon 源代码,看起来他们使用加密消息语法 (CMS)。这对我来说是全新的,但看起来 BC 有一堆与 CMS 相关的类。具体来说,gdcmanon 使用称为 PKCS7_dataDecode 的 OpenSSL 方法来解密数据。我还没有找到关于如何在 Java 中做到这一点的好例子。有任何想法吗?
谢谢