#ifndef _KEYGEN_ARGS_
#define _KEYGEN_ARGS_

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

/* global variables */
extern char *pubkey;
extern char *prikey;

/* function protypes */
int keygen_args(int, char **);

#endif