| Package | Description |
|---|---|
| org.bouncycastle.bcpg |
Low level classes for dealing with OpenPGP objects.
|
| org.bouncycastle.openpgp |
High level classes for dealing with OpenPGP objects.
|
| org.bouncycastle.openpgp.operator |
Interfaces and abstract classes to provide the framework to support operations on the OpenPGP high level classes.
|
| Modifier and Type | Method and Description |
|---|---|
S2K |
SymmetricKeyEncSessionPacket.getS2K() |
S2K |
SecretKeyPacket.getS2K() |
| Constructor and Description |
|---|
SecretKeyPacket(PublicKeyPacket pubKeyPacket,
int encAlgorithm,
int s2kUsage,
S2K s2k,
byte[] iv,
byte[] secKeyData) |
SecretKeyPacket(PublicKeyPacket pubKeyPacket,
int encAlgorithm,
S2K s2k,
byte[] iv,
byte[] secKeyData) |
SecretSubkeyPacket(PublicKeyPacket pubKeyPacket,
int encAlgorithm,
int s2kUsage,
S2K s2k,
byte[] iv,
byte[] secKeyData) |
SecretSubkeyPacket(PublicKeyPacket pubKeyPacket,
int encAlgorithm,
S2K s2k,
byte[] iv,
byte[] secKeyData) |
SymmetricKeyEncSessionPacket(int encAlgorithm,
S2K s2k,
byte[] secKeyData) |
| Modifier and Type | Method and Description |
|---|---|
S2K |
PGPSecretKey.getS2K()
Return the S2K used to process this key
|
| Modifier and Type | Field and Description |
|---|---|
protected S2K |
PBESecretKeyEncryptor.s2k |
| Modifier and Type | Method and Description |
|---|---|
S2K |
PBESecretKeyEncryptor.getS2K() |
| Modifier and Type | Method and Description |
|---|---|
byte[] |
PBESecretKeyDecryptor.makeKeyFromPassPhrase(int keyAlgorithm,
S2K s2k) |
byte[] |
PBEDataDecryptorFactory.makeKeyFromPassPhrase(int keyAlgorithm,
S2K s2k)
Generates an encryption key using the pass phrase and digest calculator configured for this
factory.
|