blob: eb836e22f963a0bb4d234122eabba206a38c78be (
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
|
/*
* ecgen, tool for generating Elliptic curve domain parameters
* Copyright (C) 2017 J08nY
*/
/**
* @file input.h
*/
#ifndef ECGEN_INPUT_H
#define ECGEN_INPUT_H
#include "misc/types.h"
#include "util/random.h"
/**
*
* @param prompt
* @param bits
* @return
*/
GEN input_prime(const char *prompt, unsigned long bits);
/**
*
* @param prompt
* @param bits
* @return
*/
GEN input_int(const char *prompt, unsigned long bits);
/**
*
* @param prompt
* @return
*/
GEN input_short(const char *prompt);
/**
*
* @param prompt
* @return
*/
GEN input_string(const char *prompt);
/**
*
*/
extern FILE *in;
/**
* @brief Initialize input based on cfg.
* @param cfg
* @return whether the initialization was successful
*/
bool input_init(const config_t *cfg);
/**
* @brief Deinitialize input.
*/
void input_quit(void);
#endif // ECGEN_INPUT_H
|