org.bouncycastle.bcpg.sig.RevocationKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcpg-jdk15on Show documentation
Show all versions of bcpg-jdk15on Show documentation
The Bouncy Castle Java API for handling the OpenPGP protocol. This jar contains the OpenPGP API for JDK 1.5 to JDK 1.7. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs.
package org.bouncycastle.bcpg.sig;
import org.bouncycastle.bcpg.SignatureSubpacket;
import org.bouncycastle.bcpg.SignatureSubpacketTags;
/**
* Represents revocation key OpenPGP signature sub packet.
*/
public class RevocationKey extends SignatureSubpacket
{
// 1 octet of class,
// 1 octet of public-key algorithm ID,
// 20 octets of fingerprint
public RevocationKey(boolean isCritical, boolean isLongLength, byte[] data)
{
super(SignatureSubpacketTags.REVOCATION_KEY, isCritical, isLongLength, data);
}
public RevocationKey(boolean isCritical, byte signatureClass, int keyAlgorithm,
byte[] fingerprint)
{
super(SignatureSubpacketTags.REVOCATION_KEY, isCritical, false, createData(signatureClass,
(byte)(keyAlgorithm & 0xff), fingerprint));
}
private static byte[] createData(byte signatureClass, byte keyAlgorithm, byte[] fingerprint)
{
byte[] data = new byte[2 + fingerprint.length];
data[0] = signatureClass;
data[1] = keyAlgorithm;
System.arraycopy(fingerprint, 0, data, 2, fingerprint.length);
return data;
}
public byte getSignatureClass()
{
return this.getData()[0];
}
public int getAlgorithm()
{
return this.getData()[1];
}
public byte[] getFingerprint()
{
byte[] data = this.getData();
byte[] fingerprint = new byte[data.length - 2];
System.arraycopy(data, 2, fingerprint, 0, fingerprint.length);
return fingerprint;
}
}