org.bouncycastle.bcpg.SecretSubkeyPacket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcpg-fips Show documentation
Show all versions of bcpg-fips Show documentation
The Bouncy Castle Java APIs for the OpenPGP Protocol. The APIs are designed primarily to be used in conjunction with the BC FIPS provider. The APIs may also be used with other providers although if being used in a FIPS context it is the responsibility of the user to ensure that any other providers used are FIPS certified and used appropriately.
package org.bouncycastle.bcpg;
import java.io.IOException;
/**
* basic packet for a PGP secret key
*/
public class SecretSubkeyPacket
extends SecretKeyPacket
{
/**
* Parse a secret subkey packet from an input stream.
*
* @param in input stream
* @throws IOException
*/
SecretSubkeyPacket(
BCPGInputStream in)
throws IOException
{
this(in, false);
}
SecretSubkeyPacket(
BCPGInputStream in,
boolean newPacketFormat)
throws IOException
{
super(SECRET_SUBKEY, in, newPacketFormat);
}
/**
* Create a secret subkey packet.
* If the encryption algorithm is NOT {@link SymmetricKeyAlgorithmTags#NULL},
* the {@link #USAGE_SHA1} will be used as S2K usage, otherwise the key will be
* unencrypted ({@link #USAGE_NONE}).
*
* @param pubKeyPacket public subkey packet
* @param encAlgorithm encryption algorithm
* @param s2k s2k identifier
* @param iv optional iv for the encryption algorithm
* @param secKeyData secret key data
*/
public SecretSubkeyPacket(
PublicKeyPacket pubKeyPacket,
int encAlgorithm,
S2K s2k,
byte[] iv,
byte[] secKeyData)
{
super(SECRET_SUBKEY, pubKeyPacket, encAlgorithm, s2k, iv, secKeyData);
}
/**
* Create a secret subkey packet.
*
* @param pubKeyPacket public subkey packet
* @param encAlgorithm encryption algorithm
* @param s2kUsage s2k usage
* @param s2k s2k identifier
* @param iv optional iv for the encryption algorithm
* @param secKeyData secret key data
*/
public SecretSubkeyPacket(
PublicKeyPacket pubKeyPacket,
int encAlgorithm,
int s2kUsage,
S2K s2k,
byte[] iv,
byte[] secKeyData)
{
this(pubKeyPacket, encAlgorithm, 0, s2kUsage, s2k, iv, secKeyData);
}
/**
* Create a secret subkey packet.
*
* @param pubKeyPacket public subkey packet
* @param encAlgorithm encryption algorithm
* @param aeadAlgorithm aead algorithm
* @param s2kUsage s2k usage
* @param s2K s2k identifier
* @param iv optional iv for the AEAD algorithm or encryption algorithm
* @param secKeyData secret key data
*/
public SecretSubkeyPacket(
PublicKeyPacket pubKeyPacket,
int encAlgorithm,
int aeadAlgorithm,
int s2kUsage,
S2K s2K,
byte[] iv,
byte[] secKeyData)
{
super(SECRET_SUBKEY, pubKeyPacket, encAlgorithm, aeadAlgorithm, s2kUsage, s2K, iv, secKeyData);
}
}