org.bouncycastle.bcpg.AEADEncDataPacket 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;
import org.bouncycastle.util.Arrays;
/**
* Packet representing non-standard, LibrePGP OCB (AEAD) encrypted data. At the moment this appears to exist in the following
* expired draft only, but it's appearing despite this.
* For standardized, interoperable OpenPGP AEAD encrypted data, see {@link SymmetricEncIntegrityPacket} of version
* {@link SymmetricEncIntegrityPacket#VERSION_2}.
*
* @see
* LibrePGP - OCB Encrypted Data Packet
*/
public class AEADEncDataPacket
extends InputStreamPacket
implements AEADAlgorithmTags, BCPGHeaderObject
{
public static final int VERSION_1 = 1;
private final byte version;
private final byte algorithm;
private final byte aeadAlgorithm;
private final byte chunkSize;
private final byte[] iv;
public AEADEncDataPacket(BCPGInputStream in)
throws IOException
{
this(in, false);
}
public AEADEncDataPacket(BCPGInputStream in,
boolean newPacketFormat)
throws IOException
{
super(in, AEAD_ENC_DATA, newPacketFormat);
version = (byte)in.read();
if (version != VERSION_1)
{
throw new UnsupportedPacketVersionException("wrong AEAD packet version: " + version);
}
algorithm = (byte)in.read();
aeadAlgorithm = (byte)in.read();
chunkSize = (byte)in.read();
iv = new byte[AEADUtils.getIVLength(aeadAlgorithm)];
in.readFully(iv);
}
public AEADEncDataPacket(int algorithm, int aeadAlgorithm, int chunkSize, byte[] iv)
{
super(null, AEAD_ENC_DATA);
this.version = VERSION_1;
this.algorithm = (byte)algorithm;
this.aeadAlgorithm = (byte)aeadAlgorithm;
this.chunkSize = (byte)chunkSize;
this.iv = Arrays.clone(iv);
}
public byte getVersion()
{
return version;
}
public byte getAlgorithm()
{
return algorithm;
}
public byte getAEADAlgorithm()
{
return aeadAlgorithm;
}
public int getChunkSize()
{
return chunkSize;
}
public byte[] getIV()
{
return iv;
}
public byte[] getAAData()
{
return createAAData(getVersion(), getAlgorithm(), getAEADAlgorithm(), getChunkSize());
}
public static byte[] createAAData(int version, int symAlgorithm, int aeadAlgorithm, int chunkSize)
{
byte[] aaData = new byte[5];
aaData[0] = (byte)(0xC0 | PacketTags.AEAD_ENC_DATA);
aaData[1] = (byte)(version & 0xff);
aaData[2] = (byte)(symAlgorithm & 0xff);
aaData[3] = (byte)(aeadAlgorithm & 0xff);
aaData[4] = (byte)(chunkSize & 0xff);
return aaData;
}
@Override
public int getType()
{
return AEAD_ENC_DATA;
}
@Override
public void encode(BCPGOutputStream pgOut)
throws IOException
{
pgOut.write(1); // version
pgOut.write(this.getAlgorithm());
pgOut.write(this.getAEADAlgorithm());
pgOut.write(this.getChunkSize());
pgOut.write(iv);
}
/**
* @deprecated use AEADUtils.getIVLength()
*/
public static int getIVLength(byte aeadAlgorithm)
{
return AEADUtils.getIVLength(aeadAlgorithm);
}
}