summaryrefslogtreecommitdiffstats
path: root/keygen_args.h
blob: c1144e5fb0783fe75828cf67c403bd235b3621c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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