org.bouncycastle.bcpg.SignatureSubpacket Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcpg-jdk14 Show documentation
Show all versions of bcpg-jdk14 Show documentation
The Bouncy Castle Java API for handling the OpenPGP protocol. This jar contains the OpenPGP API for JDK 1.4. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs.
The newest version!
package org.bouncycastle.bcpg;
import java.io.IOException;
import java.io.OutputStream;
import org.bouncycastle.util.Arrays;
/**
* Basic type for a PGP Signature sub-packet.
*/
public class SignatureSubpacket
{
int type;
boolean critical;
boolean isLongLength;
protected byte[] data;
protected SignatureSubpacket(
int type,
boolean critical,
boolean isLongLength,
byte[] data)
{
this.type = type;
this.critical = critical;
this.isLongLength = isLongLength;
this.data = data;
}
public int getType()
{
return type;
}
public boolean isCritical()
{
return critical;
}
public boolean isLongLength()
{
return isLongLength;
}
/**
* return the generic data making up the packet.
*/
public byte[] getData()
{
return data;
}
public void encode(
OutputStream out)
throws IOException
{
int bodyLen = data.length + 1;
if (isLongLength)
{
out.write(0xff);
StreamUtil.writeBodyLen(out, bodyLen);
}
else
{
StreamUtil.writeNewPacketLength(out, bodyLen);
}
if (critical)
{
out.write(0x80 | type);
}
else
{
out.write(type);
}
out.write(data);
}
public int hashCode()
{
return (this.critical ? 1 : 0) + 7 * this.type + 49 * Arrays.hashCode(data);
}
public boolean equals(Object other)
{
if (other == this)
{
return true;
}
if (other instanceof SignatureSubpacket)
{
SignatureSubpacket ot = (SignatureSubpacket)other;
if (this.type == ot.type && this.critical == ot.critical)
{
return Arrays.areEqual(this.data, ot.data);
}
}
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy