mirror of
git://git.gnupg.org/gnupg.git
synced 2024-11-04 20:38:50 +01:00
f8f52d8ffe
that has been revoked by designated revoker, but the designated revoker is not present to verify the revocation (whew!). This applies to all ways to get a key into the system: --import --recv-keys, and --search-keys. If auto-key-retrieve is set, try and retrieve the revocation key. Also, auto-key-retrieve is now a keyserver-option.
22 lines
622 B
C
22 lines
622 B
C
/* Keyserver internals */
|
|
|
|
#ifndef _KEYSERVER_INTERNAL_H_
|
|
#define _KEYSERVER_INTERNAL_H_
|
|
|
|
#include <time.h>
|
|
#include "keyserver.h"
|
|
#include "iobuf.h"
|
|
#include "types.h"
|
|
|
|
void parse_keyserver_options(char *options);
|
|
int parse_keyserver_uri(char *uri);
|
|
int keyserver_export(STRLIST users);
|
|
int keyserver_import(STRLIST users);
|
|
int keyserver_import_fprint(const byte *fprint,size_t fprint_len);
|
|
int keyserver_import_keyid(u32 *keyid);
|
|
int keyserver_refresh(STRLIST users);
|
|
int keyserver_search(STRLIST tokens);
|
|
void keyserver_search_prompt(IOBUF buffer,int count,const char *searchstr);
|
|
|
|
#endif /* !_KEYSERVER_INTERNAL_H_ */
|