- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
几个星期以来,我一直在用头撞墙,试图弄清楚为什么我们的银行无法解密使用 BouncyCaSTLe PGP 单程签名和加密的消息。该银行使用 McAfee E-Business Server 8.6 进行解密。
数据使用银行的公钥加密,并使用我们的私钥签名。
使用我们自己的公钥进行加密,我能够成功解密并验证使用以下代码生成的文件的签名。 Gnupg 可以很好地解密和验证文件。
但是,银行无法解密该文件。我试过先关闭压缩,然后关闭 ASCII 装甲。这两个选项似乎都不起作用,而且无论我尝试什么选项,它们总是收到相同的错误消息:
event 1: initial
event 13: BeginLex
event 8: Analyze
File is encrypted. event 9: Recipients
Secret key is required to read it.
Key for user ID "XXXXXXXXX <XXXXXX@XXXX>"
event 6: Passphrase
event 23: Decryption
symmetric cipher used: CAST5
event 3: error -11391
event 2: final
Error decrypting file '/somepath/FILENAME'.
Corrupt data.
Bad packet
exitcode = 32
这是我用来进行单次通过签名和加密的代码:
public class PGPService {
private static final Logger log = Logger.getLogger(PGPService.class);
static {
Security.addProvider(new BouncyCastleProvider());
}
/**
* A simple routine that opens a key ring file and loads the first available key
* suitable for signature generation.
*
* @param input stream to read the secret key ring collection from.
* @return a secret key.
* @throws IOException on a problem with using the input stream.
* @throws PGPException if there is an issue parsing the input stream.
*/
@SuppressWarnings("rawtypes")
private static PGPSecretKey readSecretKey(InputStream input) throws IOException, PGPException {
PGPSecretKeyRingCollection pgpSec = new PGPSecretKeyRingCollection(
PGPUtil.getDecoderStream(input));
// We just loop through the collection till we find a key suitable for encryption, in the real
// world you would probably want to be a bit smarter about this.
Iterator keyRingIter = pgpSec.getKeyRings();
while (keyRingIter.hasNext()) {
PGPSecretKeyRing keyRing = (PGPSecretKeyRing)keyRingIter.next();
Iterator keyIter = keyRing.getSecretKeys();
while (keyIter.hasNext()) {
PGPSecretKey key = (PGPSecretKey)keyIter.next();
if (key.isSigningKey()) {
return key;
}
}
}
throw new IllegalArgumentException("Can't find signing key in key ring.");
}
/**
* Single pass signs and encrypts the given file to the given output file using the provided keys.
*
* @param fileNameIn - The name and location of the source input file.
* @param fileNameOut - The name and location of the destination output file.
* @param privateKeyIn - The input stream for the private key file.
* @param privateKeyPassword - The password for the private key file.
* @param publicEncryptionKey - The public encryption key.
* @param armoredOutput - Whether or not to ASCII armor the output.
*/
@SuppressWarnings("rawtypes")
public static void signAndEncrypt(String fileNameIn, String fileNameOut, InputStream privateKeyIn, String privateKeyPassword, PGPPublicKey publicEncryptionKey, boolean armoredOutput, boolean compress) {
int bufferSize = 1<<16;
InputStream input = null;
OutputStream finalOut = null;
OutputStream encOut = null;
OutputStream compressedOut = null;
OutputStream literalOut = null;
PGPEncryptedDataGenerator encryptedDataGenerator = null;
PGPCompressedDataGenerator compressedDataGenerator = null;
PGPSignatureGenerator signatureGenerator = null;
PGPLiteralDataGenerator literalDataGenerator = null;
try {
File output = new File(fileNameOut);
OutputStream out = new FileOutputStream(output);
if (armoredOutput) out = new ArmoredOutputStream(out);
// ? Use BCPGOutputStreams ?
// Init encrypted data generator
encryptedDataGenerator = new PGPEncryptedDataGenerator(PGPEncryptedDataGenerator.CAST5, true, new SecureRandom(), "BC");
encryptedDataGenerator.addMethod(publicEncryptionKey);
finalOut = new BufferedOutputStream(out, bufferSize);
encOut = encryptedDataGenerator.open(finalOut, new byte[bufferSize]);
// Init compression
if (compress) {
compressedDataGenerator = new PGPCompressedDataGenerator(PGPCompressedData.ZLIB);
compressedOut = new BufferedOutputStream(compressedDataGenerator.open(encOut));
}
// Init signature
PGPSecretKey pgpSec = readSecretKey(privateKeyIn);
PGPPrivateKey pgpPrivKey = pgpSec.extractPrivateKey(privateKeyPassword.toCharArray(), "BC");
signatureGenerator = new PGPSignatureGenerator(pgpSec.getPublicKey().getAlgorithm(), PGPUtil.SHA1, "BC");
signatureGenerator.initSign(PGPSignature.CANONICAL_TEXT_DOCUMENT, pgpPrivKey);
Iterator it = pgpSec.getPublicKey().getUserIDs();
if (it.hasNext()) {
PGPSignatureSubpacketGenerator spGen = new PGPSignatureSubpacketGenerator();
spGen.setSignerUserID(false, (String)it.next());
signatureGenerator.setHashedSubpackets(spGen.generate());
}
PGPOnePassSignature onePassSignature = signatureGenerator.generateOnePassVersion(false);
if (compress) onePassSignature.encode(compressedOut);
else onePassSignature.encode(encOut);
// Create the Literal Data generator Output stream which writes to the compression stream
literalDataGenerator = new PGPLiteralDataGenerator(true);
if (compress) literalOut = literalDataGenerator.open(compressedOut, PGPLiteralData.BINARY, output.getName(), new Date(), new byte[bufferSize]);
else literalOut = literalDataGenerator.open(encOut, PGPLiteralData.TEXT, fileNameIn, new Date(), new byte[bufferSize]);
// Update sign and encrypt
byte[] buffer = new byte[bufferSize];
int bytesRead = 0;
input = new FileInputStream(fileNameIn);
while((bytesRead = input.read(buffer)) != -1) {
literalOut.write(buffer,0,bytesRead);
signatureGenerator.update(buffer,0,bytesRead);
literalOut.flush();
}
// Close Literal data stream and add signature
literalOut.close();
literalDataGenerator.close();
if (compress) signatureGenerator.generate().encode(compressedOut);
else signatureGenerator.generate().encode(encOut);
} catch (Exception e) {
log.error(e);
throw new RuntimeException(e);
} finally {
// Close all streams
if (literalOut != null) try { literalOut.close(); } catch (IOException e) {}
if (literalDataGenerator != null) try { literalDataGenerator.close(); } catch (IOException e) {}
if (compressedOut != null) try { compressedOut.close(); } catch (IOException e) {}
if (compressedDataGenerator != null) try { compressedDataGenerator.close(); } catch (IOException e) {}
if (encOut != null) try { encOut.close(); } catch (IOException e) {}
if (encryptedDataGenerator != null) try { encryptedDataGenerator.close(); } catch (IOException e) {}
if (finalOut != null) try { finalOut.close(); } catch (IOException e) {}
if (input != null) try { input.close(); } catch (IOException e) {}
}
}
@SuppressWarnings("rawtypes")
private static PGPPublicKey readPublicKeyFromCol(InputStream in) throws Exception {
PGPPublicKeyRing pkRing = null;
PGPPublicKeyRingCollection pkCol = new PGPPublicKeyRingCollection(in);
log.info("Key ring size = " + pkCol.size());
Iterator it = pkCol.getKeyRings();
while (it.hasNext()) {
pkRing = (PGPPublicKeyRing) it.next();
Iterator pkIt = pkRing.getPublicKeys();
while (pkIt.hasNext()) {
PGPPublicKey key = (PGPPublicKey) pkIt.next();
log.info("Encryption key = " + key.isEncryptionKey() + ", Master key = " +
key.isMasterKey());
if (key.isEncryptionKey()) {
// Find out a little about the keys in the public key ring.
log.info("Key Strength = " + key.getBitStrength());
log.info("Algorithm = " + key.getAlgorithm());
log.info("Bit strength = " + key.getBitStrength());
log.info("Version = " + key.getVersion());
return key;
}
}
}
return null;
}
private static PGPPrivateKey findSecretKey(InputStream keyIn, long keyID, char[] pass)
throws IOException, PGPException, NoSuchProviderException {
PGPSecretKeyRingCollection pgpSec = new PGPSecretKeyRingCollection(PGPUtil.getDecoderStream(keyIn));
PGPSecretKey pgpSecKey = pgpSec.getSecretKey(keyID);
if (pgpSecKey == null) {
return null;
}
return pgpSecKey.extractPrivateKey(pass, "BC");
}
}
知道是什么原因造成的吗?我使用 Google 发现了大量报告,但没有解决方案或后续行动。
最佳答案
我正在回答我自己的问题,希望它能帮助其他人,因为这个问题的答案很难在网上找到。
McAfee E-Business Server 8.6 之前的版本与 BouncyCaSTLe PGP 存在兼容性问题,似乎大多数人都无法让它工作。因此,如果您的供应商/客户/银行使用的是 8.6 之前的 E-Business Server 版本,您很可能是 SOL,可能需要找到不同的加密包。
来源:https://kc.mcafee.com/corporate/index?page=content&id=KB60816&cat=CORP_EBUSINESS_SERVER&actp=LIST
"Decrypting a file that was encrypted with Bouncy Castle v1.37 may result in Access Violation Error (or SIGSEG on UNIX platforms). This issue has been addressed in this release."
幸运的是,我们的银行正在使用 McAfee E-Business Server 8.6。然而,这只是等式的一部分。为了解决不兼容问题,我们不得不关闭压缩和 ASCII 装甲,它们才能成功解密和验证我们的文件。因此,使用我发布的原始代码,对于使用 E-Business Server 8.6 的客户端,您将这样调用它:
PGPService.signAndEncrypt(clearTextFileName, secureFileName, privKeyIn, privateKeyFilePassword, pubKeyIn, true, false, false);
当然,这意味着您不能使用 ASCII 装甲,这对您来说可能是个问题,也可能不是。如果是,BouncyCaSTLe 开发邮件列表上的 David 建议您在非数据包模式下使用 BouncyCaSTLe。 IE:不要将字节缓冲区传递到流中的打开命令中。或者分两次对文件进行签名和加密。
例如调用:
public static void signFile(String fileNameIn, String fileNameOut, InputStream privKeyIn, String password, boolean armoredOutput) {
OutputStream out = null;
BCPGOutputStream bOut = null;
OutputStream lOut = null;
InputStream fIn = null;
try {
out = new FileOutputStream(fileNameOut);
if (armoredOutput) {
out = new ArmoredOutputStream(out);
}
PGPSecretKey pgpSec = readSecretKey(privKeyIn);
PGPPrivateKey pgpPrivKey = pgpSec.extractPrivateKey(password.toCharArray(), "BC");
PGPSignatureGenerator sGen = new PGPSignatureGenerator(pgpSec.getPublicKey().getAlgorithm(), PGPUtil.SHA1, "BC");
sGen.initSign(PGPSignature.BINARY_DOCUMENT, pgpPrivKey);
Iterator it = pgpSec.getPublicKey().getUserIDs();
if (it.hasNext()) {
PGPSignatureSubpacketGenerator spGen = new PGPSignatureSubpacketGenerator();
spGen.setSignerUserID(false, (String)it.next());
sGen.setHashedSubpackets(spGen.generate());
}
PGPCompressedDataGenerator cGen = new PGPCompressedDataGenerator(PGPCompressedData.ZLIB);
bOut = new BCPGOutputStream(cGen.open(out));
sGen.generateOnePassVersion(false).encode(bOut);
File file = new File(fileNameIn);
PGPLiteralDataGenerator lGen = new PGPLiteralDataGenerator();
lOut = lGen.open(bOut, PGPLiteralData.BINARY, file);
fIn = new FileInputStream(file);
int ch = 0;
while ((ch = fIn.read()) >= 0) {
lOut.write(ch);
sGen.update((byte) ch);
}
lGen.close();
sGen.generate().encode(bOut);
cGen.close();
} catch (Exception e) {
log.error(e);
throw new RuntimeException(e);
} finally {
if (lOut != null) try { lOut.close(); } catch (IOException e) {}
if (bOut != null) try { bOut.close(); } catch (IOException e) {}
if (out != null) try { out.close(); } catch (IOException e) {}
if (fIn != null) try { fIn.close(); } catch (IOException e) {}
}
}
接着调用:
public static byte[] encrypt(byte[] data, InputStream pubKeyIn, boolean isPublicKeyArmored) {
FileOutputStream fos = null;
BufferedReader isr = null;
try {
if (isPublicKeyArmored) pubKeyIn = new ArmoredInputStream(pubKeyIn);
PGPPublicKey key = readPublicKeyFromCol(pubKeyIn);
log.info("Creating a temp file...");
// Create a file and write the string to it.
File tempfile = File.createTempFile("pgp", null);
fos = new FileOutputStream(tempfile);
fos.write(data);
fos.close();
log.info("Temp file created at: " + tempfile.getAbsolutePath());
log.info("Reading the temp file to make sure that the bits were written...\n");
isr = new BufferedReader(new FileReader(tempfile));
String line = "";
while ((line = isr.readLine()) != null ) {
log.info(line + "\n");
}
int count = 0;
for (java.util.Iterator iterator = key.getUserIDs(); iterator.hasNext();) {
count++;
log.info(iterator.next());
}
log.info("Key Count = " + count);
// Encrypt the data.
ByteArrayOutputStream baos = new ByteArrayOutputStream();
_encrypt(tempfile.getAbsolutePath(), baos, key);
log.info("Encrypted text length = " + baos.size());
tempfile.delete();
return baos.toByteArray();
} catch (PGPException e) {
log.error(e);
throw new RuntimeException(e);
} catch (Exception e) {
log.error(e);
throw new RuntimeException(e);
} finally {
if (fos != null) try { fos.close(); } catch (IOException e) {}
if (isr != null) try { isr.close(); } catch (IOException e) {}
}
}
注意买者,因为我无法测试此方法以查看这是否甚至可以解决不兼容问题。但如果您别无选择并且必须为电子商务服务器目标使用 ASCII 装甲,那么这是您可以尝试的途径。
可以在 BouncyCaSTLe 开发邮件列表存档中找到更多信息,如果您决定走这条路,这些信息可能会有所帮助。特别是这个线程:http://www.bouncycastle.org/devmailarchive/msg12080.html
关于java - BouncyCaSTLe PGP 和 McAfee eBusiness Server 8.6 不兼容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6617720/
所以,我在这行代码中遇到了错误; else if(lockError == EBUSY) 我得到了错误; use of undeclared identifier 'EBUSY' 如何将我的 int
我正在单步执行我们的可执行文件链接到的第三方库中的一些代码,特别是“关闭”代码。我正在向我们的应用程序发送 SIGQUIT,这将关闭第三方对象。 出于某种原因,该库对 pthread_mutex_de
在退出之前,我按以下顺序从 main() 调用: pthread_cancel() 其他线程使用正在“等待”的 mtx(他们正在等待其他 cond_variable 和 mutex。也许这就是问题所在
我有一个非常简单的 Gulpfile: var gulp = require('gulp'), prefix = require('gulp-autoprefixer'), gsass
这是我的问题。我目前正在更新 arm 嵌入式 Linux 机器的内核,从 4.1 到 4.14.73。 我遇到了驱动程序方面的问题。对于内核 4.1,在使用 request_irq 注册 irq 之前
strerror() 函数返回简短的错误描述,将错误编号作为参数。例如,如果参数为ENOTDIR,则返回“Not a directory”,如果参数为EBUSY,则返回“Device or resou
在我所有的搜索尝试中,我只能找到试图修复“EBUSY:资源繁忙或锁定”错误的人。 我想要的是有意地(暂时)将文件置于此状态。如何做到这一点? 我尝试使用来自 NodeJS 的 fs.open、fs.c
有时当我尝试启动 angular-cli 命令时: ng build --app myApplication -w 我收到以下错误: EBUSY: resource busy or locked, u
我正在尝试将行追加到nodejs 中的文件中。我写了下面一段代码。 /* Name : test.js */ /* globals require,__dirname */ var fs = req
我的应用中有一个奇怪的错误。 在我的应用程序中,可以下载一个 zipFile,按原样读取内容并删除它。它到底是什么并不重要。 问题:只有在摩托罗拉 Xoom(4.0.4 版)上我可以下载文件,解压缩,
我的应用程序遇到了这个问题,所以我有一个 stage 文件夹,我们在其中接收文件,目录上有一个 fs.watch,它将监视文件并将文件移动到另一个目录,一旦它看到它。只是为了模仿这个过程,我让应用程序
我正在运行 windows7 并且刚刚安装了以下... c:\design_centre_dev\workspace>node -v v5.10.1 c:\design_centre_dev\work
尝试运行 Nodejs 应用程序来测试 Raspberry 3 B + Gpio Onoff 模块,但是当我尝试运行该应用程序时出现此错误 fs.js:114 throw err; Error: EB
刚刚使用 pip install -U pytest 安装了 py.test 没有错误,但是我们在尝试启动 py.test 时出现错误: EBUSY: [资源设备]: listdir('C:\\Use
在Windows中执行以下步骤后,将发生错误: 打开一个终端:npm run start:dev 打开另一个终端:ng build --watch 但是,通过使用以上命令,它可以在Mac中工作。 pa
我花了几个小时试图自己解决这个问题,同时寻找类似的问题,但没有任何运气,所以我得出的结论是,唯一要做的就是在这里发布一个问题。 我正在开发一个 Web 应用程序的后端,我在其中使用 MongoDB 进
请告诉我是否有任何 sdk,我可以通过它从 c 或 cpp 通信 Oracle eBusiness 套件。我知道 OCCI 用于与 Oracle DB 交互,我正在寻找一种与 Oracle 电子商务套
我正在为 IRQ 号 8 开发一个驱动程序,它对应于 RTC 时钟。我有以下问题。当我用 request_irq 请求那个 IRQ 时,我得到一个 EBUSY 错误。我认为首先使用 free_irq(
我是 Node.js 的新手,我想弄清楚以下代码有什么问题。 var fs = require('fs'); var dir = "C:\\"; var files = fs.readdirSync(
我正在尝试编写一些基本的内核模块——使用 netlink 套接字(用户端的 libnl)的用户空间程序通信。用户空间程序向内核发送消息并期待回复。不幸的是,接收回复失败,返回值 -16 (EBUSY)
我是一名优秀的程序员,十分优秀!