1998-01-12 11:18:17 +01:00
|
|
|
/* trustdb.h - Trust database
|
2000-07-14 19:34:53 +02:00
|
|
|
* Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
|
1998-01-12 11:18:17 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* This file is part of GnuPG.
|
1998-01-12 11:18:17 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
1998-01-12 11:18:17 +01:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
1998-01-12 11:18:17 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
|
2000-01-27 17:50:45 +01:00
|
|
|
#ifndef GPG_TRUSTDB_H
|
|
|
|
#define GPG_TRUSTDB_H
|
1998-01-12 11:18:17 +01:00
|
|
|
|
1998-01-13 20:04:23 +01:00
|
|
|
|
1998-02-18 14:58:46 +01:00
|
|
|
/* Trust values must be sorted in ascending order */
|
|
|
|
#define TRUST_MASK 15
|
1998-05-29 13:53:54 +02:00
|
|
|
#define TRUST_UNKNOWN 0 /* o: not yet calculated */
|
|
|
|
#define TRUST_EXPIRED 1 /* e: calculation may be invalid */
|
|
|
|
#define TRUST_UNDEFINED 2 /* q: not enough information for calculation */
|
|
|
|
#define TRUST_NEVER 3 /* n: never trust this pubkey */
|
|
|
|
#define TRUST_MARGINAL 4 /* m: marginally trusted */
|
|
|
|
#define TRUST_FULLY 5 /* f: fully trusted */
|
|
|
|
#define TRUST_ULTIMATE 6 /* u: ultimately trusted */
|
1998-02-18 14:58:46 +01:00
|
|
|
/* trust values not covered by the mask */
|
1998-05-29 13:53:54 +02:00
|
|
|
#define TRUST_FLAG_REVOKED 32 /* r: revoked */
|
1999-05-06 14:26:10 +02:00
|
|
|
#define TRUST_FLAG_SUB_REVOKED 64
|
1999-06-29 21:50:54 +02:00
|
|
|
#define TRUST_FLAG_DISABLED 128 /* d: key/uid disabled */
|
1998-01-13 20:04:23 +01:00
|
|
|
|
|
|
|
|
1998-08-05 18:51:59 +02:00
|
|
|
#define PREFTYPE_SYM 1
|
|
|
|
#define PREFTYPE_HASH 2
|
|
|
|
#define PREFTYPE_COMPR 3
|
|
|
|
|
|
|
|
|
1998-01-12 11:18:17 +01:00
|
|
|
/*-- trustdb.c --*/
|
1998-11-18 20:59:06 +01:00
|
|
|
void list_trust_path( const char *username );
|
1998-12-08 13:20:53 +01:00
|
|
|
void register_trusted_key( const char *string );
|
1998-07-21 14:53:38 +02:00
|
|
|
void check_trustdb( const char *username );
|
1998-10-16 18:00:17 +02:00
|
|
|
void update_trustdb( void );
|
1999-03-11 16:42:06 +01:00
|
|
|
int setup_trustdb( int level, const char *dbname );
|
|
|
|
void init_trustdb( void );
|
2000-07-14 19:34:53 +02:00
|
|
|
void sync_trustdb( void );
|
1999-03-17 13:13:04 +01:00
|
|
|
int check_trust( PKT_public_key *pk, unsigned *r_trustlevel,
|
|
|
|
const byte* nh, int (*add_fnc)(ulong), unsigned *retflgs );
|
1999-03-08 20:50:18 +01:00
|
|
|
int query_trust_info( PKT_public_key *pk, const byte *nh );
|
1998-11-13 20:41:41 +01:00
|
|
|
int enum_cert_paths( void **context, ulong *lid,
|
|
|
|
unsigned *ownertrust, unsigned *validity );
|
1999-01-09 18:59:58 +01:00
|
|
|
void enum_cert_paths_print( void **context, FILE *fp,
|
1998-12-23 13:41:40 +01:00
|
|
|
int refresh, ulong selected_lid );
|
1998-10-07 15:30:43 +02:00
|
|
|
unsigned get_ownertrust( ulong lid );
|
1998-07-30 19:37:03 +02:00
|
|
|
int get_ownertrust_info( ulong lid );
|
1998-08-05 18:51:59 +02:00
|
|
|
byte *get_pref_data( ulong lid, const byte *namehash, size_t *ret_n );
|
|
|
|
int is_algo_in_prefs( ulong lid, int preftype, int algo );
|
1998-07-21 14:53:38 +02:00
|
|
|
int keyid_from_lid( ulong lid, u32 *keyid );
|
1998-10-12 22:16:38 +02:00
|
|
|
ulong lid_from_keyblock( KBNODE keyblock );
|
1998-06-29 14:30:57 +02:00
|
|
|
int query_trust_record( PKT_public_key *pk );
|
1998-09-14 17:49:56 +02:00
|
|
|
int clear_trust_checked_flag( PKT_public_key *pk );
|
1998-11-03 20:38:58 +01:00
|
|
|
int update_trust_record( KBNODE keyblock, int fast, int *modified );
|
1999-07-01 12:53:35 +02:00
|
|
|
int insert_trust_record( KBNODE keyblock );
|
|
|
|
int insert_trust_record_by_pk( PKT_public_key *pk );
|
1998-01-24 17:32:27 +01:00
|
|
|
int update_ownertrust( ulong lid, unsigned new_trust );
|
1999-03-11 16:42:06 +01:00
|
|
|
int trust_letter( unsigned value );
|
|
|
|
|
|
|
|
/*-- tdbdump.c --*/
|
|
|
|
void list_trustdb(const char *username);
|
|
|
|
void export_ownertrust(void);
|
|
|
|
void import_ownertrust(const char *fname);
|
1998-01-12 11:18:17 +01:00
|
|
|
|
1998-07-30 19:37:03 +02:00
|
|
|
/*-- pkclist.c --*/
|
|
|
|
int edit_ownertrust( ulong lid, int mode );
|
|
|
|
|
2000-01-27 17:50:45 +01:00
|
|
|
#endif /*GPG_TRUSTDB_H*/
|