summary refs log tree commit diff
path: root/gpg-interface.h
diff options
context:
space:
mode:
authorbrian m. carlson <sandals@crustytoothpaste.net>2015-06-21 23:14:41 +0000
committerJunio C Hamano <gitster@pobox.com>2015-06-22 14:20:47 -0700
commitca194d50b84b53a0b711fef46d1a47657ec5da41 (patch)
treeb1218e292a895da641a1faa2c7b524de36ea039d /gpg-interface.h
parent434060ec6d9bf50f095db901da3fb9b557e11df1 (diff)
gpg: centralize printing signature buffers
The code to handle printing of signature data from a struct
signature_check is very similar between verify-commit and verify-tag.
Place this in a single function.  verify-tag retains its special case
behavior of printing the tag even when no valid signature is found.

Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'gpg-interface.h')
-rw-r--r--gpg-interface.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gpg-interface.h b/gpg-interface.h
index e2aabde305..1207861e7a 100644
--- a/gpg-interface.h
+++ b/gpg-interface.h
@@ -1,6 +1,8 @@
 #ifndef GPG_INTERFACE_H
 #define GPG_INTERFACE_H
 
+#define GPG_VERIFY_VERBOSE	1
+
 struct signature_check {
 	char *payload;
 	char *gpg_output;
@@ -29,5 +31,6 @@ extern void set_signing_key(const char *);
 extern const char *get_signing_key(void);
 extern int check_signature(const char *payload, size_t plen,
 	const char *signature, size_t slen, struct signature_check *sigc);
+void print_signature_buffer(const struct signature_check *sigc, unsigned flags);
 
 #endif