2001-11-13 13:50:14 +01:00
|
|
|
/* keybox-search-desc.h - Keybox serch description
|
|
|
|
* Copyright (C) 2001 Free Software Foundation, Inc.
|
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-04 21:49:40 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2001-11-13 13:50:14 +01:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
|
|
|
* 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
|
2007-07-04 21:49:40 +02:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2001-11-13 13:50:14 +01:00
|
|
|
*/
|
|
|
|
|
2011-02-04 12:57:53 +01:00
|
|
|
/*
|
2001-11-13 13:50:14 +01:00
|
|
|
This file is a temporary kludge until we can come up with solution
|
|
|
|
to share this description between keybox and the application
|
|
|
|
specific keydb
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KEYBOX_SEARCH_DESC_H
|
|
|
|
#define KEYBOX_SEARCH_DESC_H 1
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
KEYDB_SEARCH_MODE_NONE,
|
|
|
|
KEYDB_SEARCH_MODE_EXACT,
|
|
|
|
KEYDB_SEARCH_MODE_SUBSTR,
|
|
|
|
KEYDB_SEARCH_MODE_MAIL,
|
|
|
|
KEYDB_SEARCH_MODE_MAILSUB,
|
|
|
|
KEYDB_SEARCH_MODE_MAILEND,
|
|
|
|
KEYDB_SEARCH_MODE_WORDS,
|
|
|
|
KEYDB_SEARCH_MODE_SHORT_KID,
|
|
|
|
KEYDB_SEARCH_MODE_LONG_KID,
|
|
|
|
KEYDB_SEARCH_MODE_FPR16,
|
|
|
|
KEYDB_SEARCH_MODE_FPR20,
|
|
|
|
KEYDB_SEARCH_MODE_FPR,
|
|
|
|
KEYDB_SEARCH_MODE_ISSUER,
|
|
|
|
KEYDB_SEARCH_MODE_ISSUER_SN,
|
2001-12-11 13:28:17 +01:00
|
|
|
KEYDB_SEARCH_MODE_SN,
|
2001-11-16 18:56:23 +01:00
|
|
|
KEYDB_SEARCH_MODE_SUBJECT,
|
2006-10-20 13:38:48 +02:00
|
|
|
KEYDB_SEARCH_MODE_KEYGRIP,
|
2001-11-13 13:50:14 +01:00
|
|
|
KEYDB_SEARCH_MODE_FIRST,
|
|
|
|
KEYDB_SEARCH_MODE_NEXT
|
|
|
|
} KeydbSearchMode;
|
|
|
|
|
2009-12-08 17:30:33 +01:00
|
|
|
|
|
|
|
/* Forwward declaration. See g10/packet.h. */
|
|
|
|
struct gpg_pkt_user_id_s;
|
|
|
|
typedef struct gpg_pkt_user_id_s *gpg_pkt_user_id_t;
|
|
|
|
|
|
|
|
/* A search descriptor. */
|
2011-02-04 12:57:53 +01:00
|
|
|
struct keydb_search_desc
|
2009-12-08 17:30:33 +01:00
|
|
|
{
|
2001-11-13 13:50:14 +01:00
|
|
|
KeydbSearchMode mode;
|
2011-02-04 12:57:53 +01:00
|
|
|
int (*skipfnc)(void *, u32 *, gpg_pkt_user_id_t);
|
2001-11-13 13:50:14 +01:00
|
|
|
void *skipfncvalue;
|
2011-02-04 12:57:53 +01:00
|
|
|
const unsigned char *sn;
|
2001-12-18 18:37:48 +01:00
|
|
|
int snlen; /* -1 := sn is a hex string */
|
2001-11-13 13:50:14 +01:00
|
|
|
union {
|
|
|
|
const char *name;
|
2001-12-11 13:28:17 +01:00
|
|
|
unsigned char fpr[24];
|
2009-12-08 17:30:33 +01:00
|
|
|
u32 kid[2]; /* Note that this is in native endianess. */
|
2006-10-20 13:38:48 +02:00
|
|
|
unsigned char grip[20];
|
2001-11-13 13:50:14 +01:00
|
|
|
} u;
|
2009-12-08 17:30:33 +01:00
|
|
|
int exact; /* Use exactly this key ('!' suffix in gpg). */
|
2001-11-13 13:50:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct keydb_search_desc;
|
|
|
|
typedef struct keydb_search_desc KEYDB_SEARCH_DESC;
|
|
|
|
typedef struct keydb_search_desc KEYBOX_SEARCH_DESC;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /*KEYBOX_SEARCH_DESC_H*/
|