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