Skip to content

Commit 1f4cad3

Browse files
committed
added AEAD algorithm tags.
added isAEAD() method to check stream authentication.
1 parent 2e86947 commit 1f4cad3

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

pg/src/main/java/org/bouncycastle/openpgp/PGPEncryptedData.java

+15-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
import java.io.InputStream;
66
import java.io.OutputStream;
77

8+
import org.bouncycastle.bcpg.AEADAlgorithmTags;
9+
import org.bouncycastle.bcpg.AEADEncDataPacket;
810
import org.bouncycastle.bcpg.InputStreamPacket;
911
import org.bouncycastle.bcpg.SymmetricEncIntegrityPacket;
1012
import org.bouncycastle.bcpg.SymmetricKeyAlgorithmTags;
@@ -21,7 +23,7 @@
2123
* </p>
2224
*/
2325
public abstract class PGPEncryptedData
24-
implements SymmetricKeyAlgorithmTags
26+
implements SymmetricKeyAlgorithmTags, AEADAlgorithmTags
2527
{
2628
protected static class TruncatedStream
2729
extends InputStream
@@ -161,7 +163,7 @@ public InputStream getInputStream()
161163
}
162164

163165
/**
164-
* Checks whether the packet is integrity protected.
166+
* Checks whether the packet is integrity protected using a modification detection code package.
165167
*
166168
* @return <code>true</code> if there is a modification detection code package associated with
167169
* this stream
@@ -171,6 +173,17 @@ public boolean isIntegrityProtected()
171173
return (encData instanceof SymmetricEncIntegrityPacket);
172174
}
173175

176+
/**
177+
* Checks whether the packet is protected using an AEAD algorithm.
178+
*
179+
* @return <code>true</code> if there is a modification detection code package associated with
180+
* this stream
181+
*/
182+
public boolean isAEAD()
183+
{
184+
return (encData instanceof AEADEncDataPacket);
185+
}
186+
174187
/**
175188
* Verifies the integrity of the packet against the modification detection code associated with
176189
* it in the stream.

0 commit comments

Comments
 (0)