Package org.bouncycastle.bcpg.sig
Class IssuerFingerprint
- java.lang.Object
-
- org.bouncycastle.bcpg.SignatureSubpacket
-
- org.bouncycastle.bcpg.sig.IssuerFingerprint
-
public class IssuerFingerprint extends SignatureSubpacket
Signature Subpacket containing the fingerprint of the issuers signing (sub-) key. This packet supersedes theIssuerKeyID
subpacket.- See Also:
- RFC9580 - Issuer Fingerprint
-
-
Field Summary
-
Fields inherited from class org.bouncycastle.bcpg.SignatureSubpacket
data
-
-
Constructor Summary
Constructors Constructor Description IssuerFingerprint(boolean critical, boolean isLongLength, byte[] data)
IssuerFingerprint(boolean critical, int keyVersion, byte[] fingerprint)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte[]
getFingerprint()
long
getKeyID()
KeyIdentifier
getKeyIdentifier()
int
getKeyVersion()
-
Methods inherited from class org.bouncycastle.bcpg.SignatureSubpacket
encode, equals, getData, getType, hashCode, isCritical, isLongLength
-
-
-
-
Method Detail
-
getKeyVersion
public int getKeyVersion()
-
getFingerprint
public byte[] getFingerprint()
-
getKeyID
public long getKeyID()
-
getKeyIdentifier
public KeyIdentifier getKeyIdentifier()
-
-