mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-18 02:12:06 +01:00
Use BCs PGPEncryptedDataList.isIntegrityProtected()
This commit is contained in:
parent
6243d69061
commit
f80b3e0cdb
1 changed files with 1 additions and 3 deletions
|
@ -405,9 +405,7 @@ public class OpenPgpMessageInputStream extends DecryptionStream {
|
||||||
syntaxVerifier.next(InputSymbol.EncryptedData);
|
syntaxVerifier.next(InputSymbol.EncryptedData);
|
||||||
PGPEncryptedDataList encDataList = packetInputStream.readEncryptedDataList();
|
PGPEncryptedDataList encDataList = packetInputStream.readEncryptedDataList();
|
||||||
|
|
||||||
// TODO: Replace with !encDataList.isIntegrityProtected()
|
if (!encDataList.isIntegrityProtected()) {
|
||||||
// once BC ships it
|
|
||||||
if (!encDataList.get(0).isIntegrityProtected()) {
|
|
||||||
LOGGER.debug("Symmetrically Encrypted Data Packet is not integrity-protected and is therefore rejected.");
|
LOGGER.debug("Symmetrically Encrypted Data Packet is not integrity-protected and is therefore rejected.");
|
||||||
throw new MessageNotIntegrityProtectedException();
|
throw new MessageNotIntegrityProtectedException();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue