Revision a12c6b0149e3dadd0701dac4fd0ba2463d251650 authored by Mark Lodato on 26 March 2012, 02:41:42 UTC, committed by Junio C Hamano on 26 March 2012, 19:06:48 UTC
All of the other options were included in the synopsis, so it makes
sense to include these as well.

Signed-off-by: Mark Lodato <lodatom@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 36384c9
Raw File
gpg-interface.h
#ifndef GPG_INTERFACE_H
#define GPG_INTERFACE_H

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);
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
back to top