diff options
author | Werner Koch <wk@gnupg.org> | 1998-01-16 22:15:24 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1998-01-16 22:15:24 +0100 |
commit | 4ec1775f3eaf8733a5285460b631253b90d3c6fb (patch) | |
tree | 3061decd5793f93c5a51dab58cb45c8e79a26403 /g10/keydb.h | |
parent | *** empty log message *** (diff) | |
download | gnupg2-4ec1775f3eaf8733a5285460b631253b90d3c6fb.tar.xz gnupg2-4ec1775f3eaf8733a5285460b631253b90d3c6fb.zip |
added some trust model stuff
Diffstat (limited to 'g10/keydb.h')
-rw-r--r-- | g10/keydb.h | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/g10/keydb.h b/g10/keydb.h index 8eb49478d..818b64307 100644 --- a/g10/keydb.h +++ b/g10/keydb.h @@ -72,6 +72,17 @@ struct skc_list { int mark; }; +/* structure to collect all informations which can be used to + * identify a public key */ +typedef struct pubkey_find_info *PUBKEY_FIND_INFO; +struct pubkey_find_info { + u32 keyid[2]; + unsigned nbits; + byte pubkey_algo; + byte fingerprint[20]; + char userid[1]; +}; + /*-- pkclist.c --*/ void release_pkc_list( PKC_LIST pkc_list ); @@ -128,9 +139,9 @@ void clear_kbnode_flags( KBNODE n ); /*-- ringedit.c --*/ int add_keyblock_resource( const char *filename, int force, int secret ); int get_keyblock_handle( const char *filename, int secret, KBPOS *kbpos ); -int search_keyblock( PACKET *pkt, KBPOS *kbpos, int secret ); -int search_keyblock_byname( KBPOS *kbpos, const char *username ); -int search_secret_keyblock_byname( KBPOS *kbpos, const char *username ); +int find_keyblock( PUBKEY_FIND_INFO info, KBPOS *kbpos ); +int find_keyblock_byname( KBPOS *kbpos, const char *username ); +int find_secret_keyblock_byname( KBPOS *kbpos, const char *username ); int lock_keyblock( KBPOS *kbpos ); void unlock_keyblock( KBPOS *kbpos ); int read_keyblock( KBPOS *kbpos, KBNODE *ret_root ); |