summaryrefslogtreecommitdiffstats
path: root/keygen_args.h
blob: c9d0bce95e23916599e8c05e44823de7eba6af37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _KEYGEN_ARGS_
#define _KEYGEN_ARGS_

#include <cstdio>
#include <cstdlib>
#include <cstring>

/* global variables */
extern char *pubkey;
extern char *prikey;
extern long prime_p;
extern long prime_q;
extern int random_f;

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

#endif