/*
 * pgpglue.h --
 *
 * Header file for PGP glue routines.  
 *
 * Created by:	Derek Atkins <warlord@MIT.EDU>
 *
 * Copyright 1994 Derek A. Atkins and the Massachusetts Institute of
 * Technology
 *
 * For copying and distribution information, please see the file
 * <warlord-copyright.h>.
 *
 * $Source: /mit/warlord/C/pgpsign/src/RCS/pgpglue.h,v $
 * $Author: warlord $
 *
 */

#include "warlord-copyright.h"
#include "pgpsign.h"

extern int add_key_to_keyring(char *key, int keylen, char *keyring, 
			      char *keyout, char **error_msg);

extern int extract_key_from_keyring(char *user, char *keyring, char **key, 
				    int *keylen);

extern int sign_key(char *user, char *keyring, char **error_msg);
