File tree 1 file changed +15
-2
lines changed
pg/src/main/java/org/bouncycastle/openpgp
1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 5
5
import java .io .InputStream ;
6
6
import java .io .OutputStream ;
7
7
8
+ import org .bouncycastle .bcpg .AEADAlgorithmTags ;
9
+ import org .bouncycastle .bcpg .AEADEncDataPacket ;
8
10
import org .bouncycastle .bcpg .InputStreamPacket ;
9
11
import org .bouncycastle .bcpg .SymmetricEncIntegrityPacket ;
10
12
import org .bouncycastle .bcpg .SymmetricKeyAlgorithmTags ;
21
23
* </p>
22
24
*/
23
25
public abstract class PGPEncryptedData
24
- implements SymmetricKeyAlgorithmTags
26
+ implements SymmetricKeyAlgorithmTags , AEADAlgorithmTags
25
27
{
26
28
protected static class TruncatedStream
27
29
extends InputStream
@@ -161,7 +163,7 @@ public InputStream getInputStream()
161
163
}
162
164
163
165
/**
164
- * Checks whether the packet is integrity protected.
166
+ * Checks whether the packet is integrity protected using a modification detection code package .
165
167
*
166
168
* @return <code>true</code> if there is a modification detection code package associated with
167
169
* this stream
@@ -171,6 +173,17 @@ public boolean isIntegrityProtected()
171
173
return (encData instanceof SymmetricEncIntegrityPacket );
172
174
}
173
175
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
+
174
187
/**
175
188
* Verifies the integrity of the packet against the modification detection code associated with
176
189
* it in the stream.
You can’t perform that action at this time.
0 commit comments