diff options
author | wukong <rebirthmonkey@gmail.com> | 2015-11-23 17:48:48 +0100 |
---|---|---|
committer | wukong <rebirthmonkey@gmail.com> | 2015-11-23 17:48:48 +0100 |
commit | fca74d4bc3569506a6659880a89aa009dc11f552 (patch) | |
tree | 4cefd06af989608ea8ebd3bc6306889e2a1ad175 /moon-abe/pbc-0.5.14/gen/genfparam.c | |
parent | 840ac3ebca7af381132bf7e93c1e4c0430d6b16a (diff) |
moon-abe cleanup
Change-Id: Ie1259856db03f0b9e80de3e967ec6bd1f03191b3
Diffstat (limited to 'moon-abe/pbc-0.5.14/gen/genfparam.c')
-rw-r--r-- | moon-abe/pbc-0.5.14/gen/genfparam.c | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/moon-abe/pbc-0.5.14/gen/genfparam.c b/moon-abe/pbc-0.5.14/gen/genfparam.c deleted file mode 100644 index d7118dad..00000000 --- a/moon-abe/pbc-0.5.14/gen/genfparam.c +++ /dev/null @@ -1,24 +0,0 @@ -// Generate type F pairings. -// Usage: -// genaparam [BITS] -// -// BITS -// The number of bits in r, the order of the subgroup G1. Default is 160. - -#include "pbc.h" - -int main(int argc, char **argv) { - int bits = 160; - if (argc > 1) { - bits = atoi(argv[1]); - if (bits < 1) { - pbc_die("Usage: %s [BITS]", argv[0]); - } - } - pbc_param_t fp; - pbc_param_init_f_gen(fp, bits); - pbc_param_out_str(stdout, fp); - pbc_param_clear(fp); - - return 0; -} |