/* writekeytofile.c --
 *
 * This takes a key and a length, and writes it out to a file.
 *
 * 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/writekeytofile.c,v $
 * $Author: warlord $
 *
 */

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

void
writekeytofile(char *key, int keylen, FILE *fp)
{
  fwrite(key, 1, keylen, fp);

  return;
}
