1 #ifndef GPG_INTERFACE_H
2 #define GPG_INTERFACE_H
6 #define GPG_VERIFY_VERBOSE 1
7 #define GPG_VERIFY_RAW 2
8 #define GPG_VERIFY_OMIT_STATUS 4
10 enum signature_trust_level
{
18 struct signature_check
{
26 * N (checked but no further result)
34 char *primary_key_fingerprint
;
35 enum signature_trust_level trust_level
;
38 void signature_check_clear(struct signature_check
*sigc
);
41 * Look at a GPG signed tag object. If such a signature exists, store it in
42 * signature and the signed content in payload. Return 1 if a signature was
43 * found, and 0 otherwise.
45 int parse_signature(const char *buf
, size_t size
, struct strbuf
*payload
, struct strbuf
*signature
);
48 * Look at GPG signed content (e.g. a signed tag object), whose
49 * payload is followed by a detached signature on it. Return the
50 * offset where the embedded detached signature begins, or the end of
51 * the data when there is no such signature.
53 size_t parse_signed_buffer(const char *buf
, size_t size
);
56 * Create a detached signature for the contents of "buffer" and append
57 * it after "signature"; "buffer" and "signature" can be the same
58 * strbuf instance, which would cause the detached signature appended
61 int sign_buffer(struct strbuf
*buffer
, struct strbuf
*signature
,
62 const char *signing_key
);
64 int git_gpg_config(const char *, const char *, void *);
65 void set_signing_key(const char *);
66 const char *get_signing_key(void);
69 * Returns a textual unique representation of the signing key in use
70 * Either a GPG KeyID or a SSH Key Fingerprint
72 const char *get_signing_key_id(void);
73 int check_signature(const char *payload
, size_t plen
,
74 const char *signature
, size_t slen
,
75 struct signature_check
*sigc
);
76 void print_signature_buffer(const struct signature_check
*sigc
,