![JAR search and dependency download from the Maven repository](/logo.png)
org.bouncycastle.bcpg.sig.IssuerKeyID 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.sig;
import org.bouncycastle.bcpg.FingerprintUtil;
import org.bouncycastle.bcpg.KeyIdentifier;
import org.bouncycastle.bcpg.SignatureSubpacket;
import org.bouncycastle.bcpg.SignatureSubpacketTags;
/**
* Signature Subpacket containing the key-id of the issuers signing (sub-) key.
* If the version of that key is greater than 4, this subpacket MUST NOT be included in the signature.
* For these keys, consider the {@link IssuerFingerprint} subpacket instead.
*
* @see
* RFC4880 - Issuer
* @see
* RFC9580 - Issuer Key ID
*/
public class IssuerKeyID
extends SignatureSubpacket
{
protected static byte[] keyIDToBytes(
long keyId)
{
byte[] data = new byte[8];
FingerprintUtil.writeKeyID(keyId, data);
return data;
}
public IssuerKeyID(
boolean critical,
boolean isLongLength,
byte[] data)
{
super(SignatureSubpacketTags.ISSUER_KEY_ID, critical, isLongLength, data);
}
public IssuerKeyID(
boolean critical,
long keyID)
{
super(SignatureSubpacketTags.ISSUER_KEY_ID, critical, false, keyIDToBytes(keyID));
}
public long getKeyID()
{
return FingerprintUtil.readKeyID(data);
}
public KeyIdentifier getKeyIdentifier()
{
return new KeyIdentifier(getKeyID());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy