summaryrefslogtreecommitdiffstats
path: root/moon-abe/pbc-0.5.14/include/pbc_g_param.h
blob: 0b7bf45dd74477b0f048dc908b4588395618cc19 (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
// Type G pairings.

// Requires:
// * mnt.h
// * param.h
#ifndef __PBC_G_PARAM_H__
#define __PBC_G_PARAM_H__

struct symtab_s;
int pbc_param_init_g(pbc_param_ptr par, struct symtab_s *tab);

/*@manual gparam
Type G curves are generated using the complex multiplication (CM) method.  This
function sets 'p' to a type G pairing parameters from CM parameters 'cm'.
They have embedding degree 10.

To be secure, generic discrete log algorithms must be infeasible in groups of
order r, and finite field discrete log algorithms must be infeasible in finite
fields of order q^6^.  For usual CM parameters, r is a few bits smaller than q.

They are quite slow at the moment so for now type F is a better choice.

The file `param/g149.param` contains parameters for a
type G pairing with 149-bit group and field sizes.
*/
void pbc_param_init_g_gen(pbc_param_t p, pbc_cm_ptr cm);

#endif //__PBC_G_PARAM_H__