mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-04 20:38:50 +01:00
45f99c58bb
card to fetch an updated copy. Works with either straight URLs or HKP or LDAP keyservers. * keyserver-internal.h, keyserver.c (keyserver_import_fprint), import.c (revocation_present): Use a keyserver_spec so the caller can pass in whatever keyserver they like.
44 lines
1.6 KiB
C
44 lines
1.6 KiB
C
/* keyserver-internal.h - Keyserver internals
|
|
* Copyright (C) 2001, 2002, 2004 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
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (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
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
*/
|
|
|
|
#ifndef _KEYSERVER_INTERNAL_H_
|
|
#define _KEYSERVER_INTERNAL_H_
|
|
|
|
#include <time.h>
|
|
#include "keyserver.h"
|
|
#include "iobuf.h"
|
|
#include "types.h"
|
|
|
|
int parse_keyserver_options(char *options);
|
|
void free_keyserver_spec(struct keyserver_spec *keyserver);
|
|
struct keyserver_spec *parse_keyserver_uri(const char *uri,int require_scheme,
|
|
const char *configname,
|
|
unsigned int configlineno);
|
|
struct keyserver_spec *parse_preferred_keyserver(PKT_signature *sig);
|
|
int keyserver_export(STRLIST users);
|
|
int keyserver_import(STRLIST users);
|
|
int keyserver_import_fprint(const byte *fprint,size_t fprint_len,
|
|
struct keyserver_spec *keyserver);
|
|
int keyserver_import_keyid(u32 *keyid,struct keyserver_spec *keyserver);
|
|
int keyserver_refresh(STRLIST users);
|
|
int keyserver_search(STRLIST tokens);
|
|
|
|
#endif /* !_KEYSERVER_INTERNAL_H_ */
|