2004-05-22 05:50:20 +02:00
|
|
|
/* keyserver-internal.h - Keyserver internals
|
2006-02-24 15:27:22 +01:00
|
|
|
* Copyright (C) 2001, 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
|
2004-05-22 05:50:20 +02:00
|
|
|
*
|
|
|
|
* 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-10-23 12:48:09 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2004-05-22 05:50:20 +02: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-10-23 12:48:09 +02:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2004-05-22 05:50:20 +02:00
|
|
|
*/
|
2002-06-29 15:46:34 +02:00
|
|
|
|
|
|
|
#ifndef _KEYSERVER_INTERNAL_H_
|
|
|
|
#define _KEYSERVER_INTERNAL_H_
|
|
|
|
|
|
|
|
#include <time.h>
|
|
|
|
#include "keyserver.h"
|
|
|
|
#include "iobuf.h"
|
|
|
|
#include "types.h"
|
|
|
|
|
2004-04-16 17:19:35 +02:00
|
|
|
int parse_keyserver_options(char *options);
|
2004-05-08 15:51:14 +02:00
|
|
|
void free_keyserver_spec(struct keyserver_spec *keyserver);
|
2006-02-24 15:27:22 +01:00
|
|
|
struct keyserver_spec *keyserver_match(struct keyserver_spec *spec);
|
2006-02-23 18:00:02 +01:00
|
|
|
struct keyserver_spec *parse_keyserver_uri(const char *string,
|
|
|
|
int require_scheme,
|
2004-04-14 23:33:45 +02:00
|
|
|
const char *configname,
|
|
|
|
unsigned int configlineno);
|
2004-05-22 05:50:20 +02:00
|
|
|
struct keyserver_spec *parse_preferred_keyserver(PKT_signature *sig);
|
2002-06-29 15:46:34 +02:00
|
|
|
int keyserver_export(STRLIST users);
|
|
|
|
int keyserver_import(STRLIST users);
|
2004-09-11 17:42:19 +02:00
|
|
|
int keyserver_import_fprint(const byte *fprint,size_t fprint_len,
|
|
|
|
struct keyserver_spec *keyserver);
|
2004-05-22 05:50:20 +02:00
|
|
|
int keyserver_import_keyid(u32 *keyid,struct keyserver_spec *keyserver);
|
2002-06-29 15:46:34 +02:00
|
|
|
int keyserver_refresh(STRLIST users);
|
|
|
|
int keyserver_search(STRLIST tokens);
|
2005-12-07 23:34:11 +01:00
|
|
|
int keyserver_fetch(STRLIST urilist);
|
2006-03-14 03:42:02 +01:00
|
|
|
int keyserver_import_cert(const char *name,
|
|
|
|
unsigned char **fpr,size_t *fpr_len);
|
2006-03-14 04:16:21 +01:00
|
|
|
int keyserver_import_pka(const char *name,unsigned char **fpr,size_t *fpr_len);
|
2006-03-14 03:42:02 +01:00
|
|
|
int keyserver_import_name(const char *name,unsigned char **fpr,size_t *fpr_len,
|
|
|
|
struct keyserver_spec *keyserver);
|
|
|
|
int keyserver_import_ldap(const char *name,
|
|
|
|
unsigned char **fpr,size_t *fpr_len);
|
2002-06-29 15:46:34 +02:00
|
|
|
|
|
|
|
#endif /* !_KEYSERVER_INTERNAL_H_ */
|