mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-23 12:52:07 +01:00
Prevent IllegalArgumentException for non-v4 issuer fingerprints
This commit is contained in:
parent
b674a412b5
commit
99ff6d537b
1 changed files with 7 additions and 3 deletions
|
@ -78,7 +78,7 @@ public class SignatureSubpacketsUtil {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the {@link IssuerFingerprint} subpacket of the signature into a {@link OpenPgpV4Fingerprint}.
|
* Return the {@link IssuerFingerprint} subpacket of the signature into a {@link OpenPgpV4Fingerprint}.
|
||||||
* If no issuer fingerprint is present in the signature, return null.
|
* If no v4 issuer fingerprint is present in the signature, return null.
|
||||||
*
|
*
|
||||||
* @param signature signature
|
* @param signature signature
|
||||||
* @return v4 fingerprint of the issuer, or null
|
* @return v4 fingerprint of the issuer, or null
|
||||||
|
@ -88,8 +88,12 @@ public class SignatureSubpacketsUtil {
|
||||||
if (subpacket == null) {
|
if (subpacket == null) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
OpenPgpV4Fingerprint fingerprint = new OpenPgpV4Fingerprint(Hex.encode(subpacket.getFingerprint()));
|
|
||||||
return fingerprint;
|
if (subpacket.getKeyVersion() == 4) {
|
||||||
|
OpenPgpV4Fingerprint fingerprint = new OpenPgpV4Fingerprint(Hex.encode(subpacket.getFingerprint()));
|
||||||
|
return fingerprint;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue