File tree 3 files changed +8
-2
lines changed
pg/src/main/java/org/bouncycastle
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -67,6 +67,10 @@ public byte getVersion()
67
67
return version ;
68
68
}
69
69
70
+ /**
71
+ * Return the algorithm-id of the symmetric encryption algorithm used to encrypt the data.
72
+ * @return symmetric encryption algorithm
73
+ */
70
74
public byte getAlgorithm ()
71
75
{
72
76
return algorithm ;
Original file line number Diff line number Diff line change @@ -247,7 +247,8 @@ public Iterator<PGPPublicKey> getKeysWithSignaturesBy(long keyID)
247
247
}
248
248
249
249
@ Override
250
- public Iterator <PGPPublicKey > getKeysWithSignaturesBy (KeyIdentifier identifier ) {
250
+ public Iterator <PGPPublicKey > getKeysWithSignaturesBy (KeyIdentifier identifier )
251
+ {
251
252
List <PGPPublicKey > keysWithSigs = new ArrayList <>();
252
253
for (PGPPublicKey k : keys )
253
254
{
Original file line number Diff line number Diff line change @@ -350,7 +350,8 @@ public Iterator<PGPPublicKey> getKeysWithSignaturesBy(long keyID)
350
350
}
351
351
352
352
@ Override
353
- public Iterator <PGPPublicKey > getKeysWithSignaturesBy (KeyIdentifier identifier ) {
353
+ public Iterator <PGPPublicKey > getKeysWithSignaturesBy (KeyIdentifier identifier )
354
+ {
354
355
List <PGPPublicKey > keysWithSigs = new ArrayList <>();
355
356
for (PGPSecretKey k : keys )
356
357
{
You can’t perform that action at this time.
0 commit comments