Package org.eclipse.jgit.lib
Interface GpgSignatureVerifier.SignatureVerification
-
- All Known Implementing Classes:
BouncyCastleGpgSignatureVerifier.VerificationResult
- Enclosing interface:
- GpgSignatureVerifier
public static interface GpgSignatureVerifier.SignatureVerificationASignatureVerificationreturns data about a (positively or negatively) verified signature.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.DategetCreationDate()java.lang.StringgetKeyFingerprint()Obtains the short or long fingerprint of the public key as stored in the signature, if known.java.lang.StringgetKeyUser()Obtains the OpenPGP user ID associated with the key.java.lang.StringgetMessage()Obtains a human-readable message giving additional information about the outcome of the verification.java.lang.StringgetSigner()Obtains the signer as stored in the signature, if known.GpgSignatureVerifier.TrustLevelgetTrustLevel()Obtains the trust level of the public key used to verify the signature.booleangetVerified()Tells whether the signature verification was successful.booleanisExpired()Tells whether the public key used for this signature verification was expired when the signature was created.
-
-
-
Method Detail
-
getCreationDate
@NonNull java.util.Date getCreationDate()
-
getSigner
java.lang.String getSigner()
Obtains the signer as stored in the signature, if known.- Returns:
- the signer, or
nullif unknown
-
getKeyFingerprint
java.lang.String getKeyFingerprint()
Obtains the short or long fingerprint of the public key as stored in the signature, if known.- Returns:
- the fingerprint, or
nullif unknown
-
getKeyUser
java.lang.String getKeyUser()
Obtains the OpenPGP user ID associated with the key.- Returns:
- the user id, or
nullif unknown
-
isExpired
boolean isExpired()
Tells whether the public key used for this signature verification was expired when the signature was created.- Returns:
trueif the key was expired already,falseotherwise
-
getTrustLevel
@NonNull GpgSignatureVerifier.TrustLevel getTrustLevel()
Obtains the trust level of the public key used to verify the signature.- Returns:
- the trust level
-
getVerified
boolean getVerified()
Tells whether the signature verification was successful.- Returns:
trueif the signature was verified successfully;falseif not.
-
getMessage
java.lang.String getMessage()
Obtains a human-readable message giving additional information about the outcome of the verification.- Returns:
- the message, or
nullif none set.
-
-