summaryrefslogtreecommitdiffstats
path: root/moon-abe/pbc-0.5.14/gen/genfparam.c
diff options
context:
space:
mode:
Diffstat (limited to 'moon-abe/pbc-0.5.14/gen/genfparam.c')
-rw-r--r--moon-abe/pbc-0.5.14/gen/genfparam.c24
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;
-}