Skip to content

Commit

Permalink
relates to #1228 - renamed PGPSymmetricEncryptedData to PGPSymmetricK…
Browse files Browse the repository at this point in the history
…eyEncryptedData
  • Loading branch information
dghgit committed Oct 5, 2022
1 parent eeef2ea commit e053171
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* </p>
*/
public class PGPPBEEncryptedData
extends PGPSymmetricEncryptedData
extends PGPSymmetricKeyEncryptedData
{
SymmetricKeyEncSessionPacket keyData;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* The basis of PGP encrypted data - encrypted data encrypted using a symmetric session key.
*/
public class PGPSessionKeyEncryptedData
extends PGPSymmetricEncryptedData
extends PGPSymmetricKeyEncryptedData
{
private final PGPSessionKey sessionKey;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
import org.bouncycastle.openpgp.operator.PGPDataDecryptorFactory;
import org.bouncycastle.util.io.TeeInputStream;

public class PGPSymmetricEncryptedData
public class PGPSymmetricKeyEncryptedData
extends PGPEncryptedData
{
protected PGPSymmetricEncryptedData(InputStreamPacket encData)
protected PGPSymmetricKeyEncryptedData(InputStreamPacket encData)
{
super(encData);
}
Expand Down

0 comments on commit e053171

Please sign in to comment.