Move commit GPG signature verification to commit.c

Signed-off-by: Sebastian Götte <jaseg@physik-pool.tu-berlin.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Sebastian Götte
2013-03-31 18:00:14 +02:00
committed by Junio C Hamano
parent 8617715cc0
commit ffb6d7d5c9
4 changed files with 93 additions and 78 deletions

View File

@ -5,6 +5,7 @@
#include "tree.h"
#include "strbuf.h"
#include "decorate.h"
#include "gpg-interface.h"
struct commit_list {
struct commit *item;
@ -232,4 +233,13 @@ extern void print_commit_list(struct commit_list *list,
const char *format_cur,
const char *format_last);
/*
* Check the signature of the given commit. The result of the check is stored in
* sig->result, 'G' for a good signature, 'B' for a bad signature and 'N'
* for no signature at all.
* This may allocate memory for sig->gpg_output, sig->gpg_status, sig->signer
* and sig->key.
*/
extern void check_commit_signature(const struct commit* commit, struct signature_check *sigc);
#endif /* COMMIT_H */