aboutsummaryrefslogtreecommitdiffstats
path: root/moon-abe/pbc-0.5.14/include/pbc_i_param.h
blob: 3f0dde58bc484a3042af7fb9ba40677f797df0de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Eta_T pairing over ternary extension field
//
// Requires:
// * pbc_param.h
#ifndef __PBC_I_PARAM_H__
#define __PBC_I_PARAM_H__

struct symtab_s;
int pbc_param_init_i(pbc_param_ptr par, struct symtab_s *);

/*@manual aparam
Generate type I pairing parameters and store them in 'p',
where the group order is at least 2^'group_size'.

To be as secure as 64 bit symmetric encryption, 'group_size' may be 150.
To get 128 bit symmetric secure level, 'group_size' may be 696.

The file `param/i.param` contains parameters for a type I pairing suitable for
cryptographic use.
*/
void pbc_param_init_i_gen(pbc_param_ptr par, int group_size);

#endif //__PBC_I_PARAM_H__