mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
Earlier, ffb6d7d5 (Move commit GPG signature verification to
commit.c, 2013-03-31) moved this helper that used to be in pretty.c
(i.e. the output code path) to commit.c for better reusability.
It was a good first step in the right direction, but still suffers
from a myopic view that commits will be the only thing we would ever
want to sign---we would actually want to be able to reuse it even
wider.
The function interprets what GPG said; gpg-interface is obviously a
better place. Move it there.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
31 lines
862 B
C
31 lines
862 B
C
#ifndef GPG_INTERFACE_H
|
|
#define GPG_INTERFACE_H
|
|
|
|
struct signature_check {
|
|
char *payload;
|
|
char *gpg_output;
|
|
char *gpg_status;
|
|
|
|
/*
|
|
* possible "result":
|
|
* 0 (not checked)
|
|
* N (checked but no further result)
|
|
* U (untrusted good)
|
|
* G (good)
|
|
* B (bad)
|
|
*/
|
|
char result;
|
|
char *signer;
|
|
char *key;
|
|
};
|
|
|
|
extern void signature_check_clear(struct signature_check *sigc);
|
|
extern void parse_gpg_output(struct signature_check *);
|
|
extern int sign_buffer(struct strbuf *buffer, struct strbuf *signature, const char *signing_key);
|
|
extern int verify_signed_buffer(const char *payload, size_t payload_size, const char *signature, size_t signature_size, struct strbuf *gpg_output, struct strbuf *gpg_status);
|
|
extern int git_gpg_config(const char *, const char *, void *);
|
|
extern void set_signing_key(const char *);
|
|
extern const char *get_signing_key(void);
|
|
|
|
#endif
|