diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-01-30 14:17:08 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-01-30 14:17:08 -0800 |
commit | 11ad30b887e2512df1c7703913048827080601e1 (patch) | |
tree | f9dcd7481c4ecd335d3f2c76a7637433d8d59d9e /gpg-interface.h | |
parent | 96aef8f68404964c48d0d85ce04f6b2d84097246 (diff) | |
parent | 54887b46890582e60fcb8ee1f287f62870c2ac0f (diff) | |
download | git-11ad30b887e2512df1c7703913048827080601e1.tar.gz |
Merge branch 'hi/gpg-mintrustlevel'
gpg.minTrustLevel configuration variable has been introduced to
tell various signature verification codepaths the required minimum
trust level.
* hi/gpg-mintrustlevel:
gpg-interface: add minTrustLevel as a configuration option
Diffstat (limited to 'gpg-interface.h')
-rw-r--r-- | gpg-interface.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gpg-interface.h b/gpg-interface.h index 93cc3aff5c..f4e9b4f371 100644 --- a/gpg-interface.h +++ b/gpg-interface.h @@ -7,6 +7,14 @@ struct strbuf; #define GPG_VERIFY_RAW 2 #define GPG_VERIFY_OMIT_STATUS 4 +enum signature_trust_level { + TRUST_UNDEFINED, + TRUST_NEVER, + TRUST_MARGINAL, + TRUST_FULLY, + TRUST_ULTIMATE, +}; + struct signature_check { char *payload; char *gpg_output; @@ -16,7 +24,6 @@ struct signature_check { * possible "result": * 0 (not checked) * N (checked but no further result) - * U (untrusted good) * G (good) * B (bad) */ @@ -25,6 +32,7 @@ struct signature_check { char *key; char *fingerprint; char *primary_key_fingerprint; + enum signature_trust_level trust_level; }; void signature_check_clear(struct signature_check *sigc); |