diff options
author | Neal H. Walfield <[email protected]> | 2016-02-16 14:47:30 +0000 |
---|---|---|
committer | Neal H. Walfield <[email protected]> | 2016-02-16 14:47:30 +0000 |
commit | bff529a3ce936a5154bcd4f00abf83a2df3e758f (patch) | |
tree | 85b8b0d5521693f7d28996567309bf0e4719e720 /g10/main.h | |
parent | gpg: Make ASCII armor decoding more robust to encoding errors. (diff) | |
download | gnupg-neal/issue2236.tar.gz gnupg-neal/issue2236.zip |
gpg: Reorder signatures, if appropriate.neal/issue2236
XXX
--
Signed-off-by: Neal H. Walfield <[email protected]>
GnuPG-bug-id: 2236
Diffstat (limited to '')
-rw-r--r-- | g10/main.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/g10/main.h b/g10/main.h index 863afa9e0..bfa501dc7 100644 --- a/g10/main.h +++ b/g10/main.h @@ -263,6 +263,15 @@ int check_key_signature2( KBNODE root, KBNODE node, PKT_public_key *check_pk, PKT_public_key *ret_pk, int *is_selfsig, u32 *r_expiredate, int *r_expired ); +int check_signature_end (PKT_public_key *pk, PKT_signature *sig, + gcry_md_hd_t digest, + int *r_expired, int *r_revoked, + PKT_public_key *ret_pk); +int check_signature_only_end (PKT_public_key *pk, PKT_signature *sig, + gcry_md_hd_t digest); +void hash_uid_node( KBNODE unode, gcry_md_hd_t md, PKT_signature *sig ); + + /*-- delkey.c --*/ gpg_error_t delete_keys (strlist_t names, int secret, int allow_both); |