Bouncy Castle を使用して、ファイル システムから XML ファイルを復号化しています。復号化されたテキストを出力すると、データの最後のバイトで致命的なエラー SAXParseException が発生します。以下は、私の復号化方法と暗号オブジェクトのセットアップです。
最初は暗号ストリームを使用していましたが、すべてが完璧に機能しました (コメントアウトされたコードは私のストリームでした)。ポリシー ファイルとエンド ユーザーが 256 ビットの無制限バージョンを持っていないため、弾む城を使用する必要があります。
最後のバイトが通過しない理由はありますか?
コンストラクターから:
keyParam = new KeyParameter(key);
engine = new AESEngine();
paddedBufferedBlockCipher =
new PaddedBufferedBlockCipher(new CBCBlockCipher(engine));
復号化方法:
public void decrypt(InputStream in, OutputStream out) {
try
{
paddedBufferedBlockCipher.init(false,
new ParametersWithIV(keyParam, _defaultIv));
// cipher.init(Cipher.DECRYPT_MODE, secretKey, ivs);
// CipherInputStream cipherInputStream
// = new CipherInputStream(in, cipher);
byte[] buffer = new byte[4096];
byte[] outBuffer = new byte[4096];
for (int count = 0; (count = in.read(buffer)) != -1;) {
paddedBufferedBlockCipher.processBytes(buffer, 0,
count, outBuffer, 0);
out.write(outBuffer, 0, count);
}
}
catch(Exception e) {
e.printStackTrace();
}
}
[Fatal Error] :40:23: Element type "Publi" must be followed by either attribute specifications, ">" or "/>".
org.xml.sax.SAXParseException: Element type "Publi" must be followed by either attribute specifications, ">" or "/>".
at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(DOMParser.java:264)
at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:292)