1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
/*
* Copyright (C) 2021, 2024 Thomas Wolf <twolf@apache.org> and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.eclipse.jgit.lib;
import java.io.IOException;
import java.util.Date;
import org.eclipse.jgit.annotations.NonNull;
import org.eclipse.jgit.api.errors.JGitInternalException;
/**
* A {@code SignatureVerifier} can verify signatures on git commits and tags.
*
* @since 7.0
*/
public interface SignatureVerifier {
/**
* Verifies a given signature for given data.
*
* @param repository
* the {@link Repository} the data comes from.
* @param config
* the {@link GpgConfig}
* @param data
* the signature is for
* @param signatureData
* the ASCII-armored signature
* @return a {@link SignatureVerification} describing the outcome
* @throws IOException
* if the signature cannot be parsed
* @throws JGitInternalException
* if signature verification fails
*/
SignatureVerification verify(@NonNull Repository repository,
@NonNull GpgConfig config, byte[] data, byte[] signatureData)
throws IOException;
/**
* Retrieves the name of this verifier. This should be a short string
* identifying the engine that verified the signature, like "gpg" if GPG is
* used, or "bc" for a BouncyCastle implementation.
*
* @return the name
*/
@NonNull
String getName();
/**
* A {@link SignatureVerifier} may cache public keys to speed up
* verifying signatures on multiple objects. This clears this cache, if any.
*/
void clear();
/**
* A {@code SignatureVerification} returns data about a (positively or
* negatively) verified signature.
*
* @param verifierName
* the name of the verifier that created this verification result
* @param creationDate
* date and time the signature was created
* @param signer
* the signer as stored in the signature, or {@code null} if
* unknown
* @param keyFingerprint
* fingerprint of the public key, or {@code null} if unknown
* @param keyUser
* user associated with the key, or {@code null} if unknown
* @param verified
* whether the signature verification was successful
* @param expired
* whether the public key used for this signature verification
* was expired when the signature was created
* @param trustLevel
* the trust level of the public key used to verify the signature
* @param message
* human-readable message giving additional information about the
* outcome of the verification, possibly {@code null}
*/
record SignatureVerification(
String verifierName,
Date creationDate,
String signer,
String keyFingerprint,
String keyUser,
boolean verified,
boolean expired,
@NonNull TrustLevel trustLevel,
String message) {
}
/**
* The owner's trust in a public key.
*/
enum TrustLevel {
UNKNOWN, NEVER, MARGINAL, FULL, ULTIMATE
}
}
|