summaryrefslogtreecommitdiff
path: root/src/io/input.h
blob: 3be68fc31ab20ab27a7621cefc9898c573e12455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*
 * ecgen, tool for generating Elliptic curve domain parameters
 * Copyright (C) 2017 J08nY
 */
/**
 * @file input.h
 */
#ifndef ECGEN_INPUT_H
#define ECGEN_INPUT_H

#include "math/random.h"
#include "math/types.h"

typedef enum PARAM {
	PARAM_PRIME,
	PARAM_INT,
	PARAM_SHORT,
	PARAM_STRING
} param_t;

/**
 *
 * @param prompt
 * @param bits
 * @return
 */
GEN input_prime(const char *prompt, long bits);

/**
 *
 * @param prompt
 * @param bits
 * @return
 */
GEN input_int(const char *prompt, long bits);

/**
 *
 * @param prompt
 * @return
 */
GEN input_short(const char *prompt);

/**
 *
 * @param prompt
 * @return
 */
GEN input_string(const char *prompt);

/**
 *
 * @param param
 * @param prompt
 * @param bits
 * @return
 */
GEN input_param(param_t param, const char *prompt, long bits);

/**
 *
 */
extern FILE *in;

/**
 *
 * @param cfg
 */
void input_init(config_t *cfg);

/**
 *
 */
void input_quit(void);

#endif  // ECGEN_INPUT_H