Class PGPSessionKeyEncryptedData
java.lang.Object
org.bouncycastle.openpgp.PGPEncryptedData
org.bouncycastle.openpgp.PGPSymmetricKeyEncryptedData
org.bouncycastle.openpgp.PGPSessionKeyEncryptedData
- All Implemented Interfaces:
AEADAlgorithmTags, SymmetricKeyAlgorithmTags
The basis of PGP encrypted data - encrypted data encrypted using a symmetric session key.
-
Nested Class Summary
Nested classes/interfaces inherited from class PGPEncryptedData
PGPEncryptedData.TruncatedStream -
Field Summary
Fields inherited from interface AEADAlgorithmTags
EAX, GCM, OCBFields inherited from interface SymmetricKeyAlgorithmTags
AES_128, AES_192, AES_256, BLOWFISH, CAMELLIA_128, CAMELLIA_192, CAMELLIA_256, CAST5, DES, IDEA, NULL, SAFER, TRIPLE_DES, TWOFISH -
Method Summary
Modifier and TypeMethodDescriptionintReturn the symmetric encryption algorithm that is used by the packet.getDataStream(SessionKeyDataDecryptorFactory dataDecryptorFactory) intReturn the version number of the Encrypted Session Key Packet.protected booleanWhether this data was decrypted from a public-key (or otherwise already-recovered session key) rather than from a password (PBE).Methods inherited from class PGPSymmetricKeyEncryptedData
createDecryptionStreamMethods inherited from class PGPEncryptedData
getEncData, getInputStream, isAEAD, isIntegrityProtected, verify
-
Method Details
-
getAlgorithm
public int getAlgorithm()Description copied from class:PGPEncryptedDataReturn the symmetric encryption algorithm that is used by the packet.- Overrides:
getAlgorithmin classPGPEncryptedData- Returns:
- algorithm
-
getVersion
public int getVersion()Description copied from class:PGPEncryptedDataReturn the version number of the Encrypted Session Key Packet.- Overrides:
getVersionin classPGPEncryptedData- Returns:
- version
-
getDataStream
public InputStream getDataStream(SessionKeyDataDecryptorFactory dataDecryptorFactory) throws PGPException - Throws:
PGPException
-
isPublicKeyEncrypted
protected boolean isPublicKeyEncrypted()Description copied from class:PGPSymmetricKeyEncryptedDataWhether this data was decrypted from a public-key (or otherwise already-recovered session key) rather than from a password (PBE). The CFB "quick check" is suppressed on the public-key / session-key path (it would only re-create the Mister-Zuccherato oracle and there is no multi-SKESK passphrase retry to drive); PBE keeps it. Overridden byPGPSessionKeyEncryptedData.- Overrides:
isPublicKeyEncryptedin classPGPSymmetricKeyEncryptedData
-