blob: bdc86ece57a0e88736292f28964358d2a74763ac (
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"
/**
* @brief Input a prime, upto <code>bits</code> long.
* @param prompt
* @param bits
* @return the prime as t_INT, or <code>-1</code> if a composite was given.
*/
GEN input_prime(const char *prompt, unsigned long bits);
/**
* @brief Input an unsigned integer, upto <code>bits</code> long.
* @param prompt
* @param bits
* @return the int as t_INT, or <code>-1</code> if invalid input was given.
*/
GEN input_int(const char *prompt, unsigned long bits);
/**
* @brief Input a short unsigned integer. (16 bits wide).
* @param prompt
* @return the short as t_INT, or <code>-1</code> if invalid input was given.
*/
GEN input_short(const char *prompt);
/**
* @brief Input a string.
* @param prompt
* @return the string as a t_STR
*/
GEN input_string(const char *prompt);
/**
* @brief The input FILE * to read all input from, can be <code>stdin</code>.
*/
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
|