2 * Copyright (C) 2009 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 #include <crypto/diffie_hellman.h>
24 printf("usage: dh_speed plugins rounds group1 [group2 [...]]\n");
30 diffie_hellman_group_t group
;
32 {"modp768", MODP_768_BIT
},
33 {"modp1024", MODP_1024_BIT
},
34 {"modp1024s160", MODP_1024_160
},
35 {"modp1536", MODP_1536_BIT
},
36 {"modp2048", MODP_2048_BIT
},
37 {"modp2048s224", MODP_2048_224
},
38 {"modp2048s256", MODP_2048_256
},
39 {"modp3072", MODP_3072_BIT
},
40 {"modp4096", MODP_4096_BIT
},
41 {"modp6144", MODP_6144_BIT
},
42 {"modp8192", MODP_8192_BIT
},
43 {"ecp256", ECP_256_BIT
},
44 {"ecp384", ECP_384_BIT
},
45 {"ecp521", ECP_521_BIT
},
46 {"ecp192", ECP_192_BIT
},
47 {"ecp224", ECP_224_BIT
},
50 static void start_timing(struct timespec
*start
)
52 clock_gettime(CLOCK_THREAD_CPUTIME_ID
, start
);
55 static double end_timing(struct timespec
*start
)
59 clock_gettime(CLOCK_THREAD_CPUTIME_ID
, &end
);
60 return (end
.tv_nsec
- start
->tv_nsec
) / 1000000000.0 +
61 (end
.tv_sec
- start
->tv_sec
) * 1.0;
64 static void run_test(diffie_hellman_group_t group
, int rounds
)
66 diffie_hellman_t
*l
[rounds
], *r
;
68 struct timespec timing
;
71 r
= lib
->crypto
->create_dh(lib
->crypto
, group
);
74 printf("skipping %N, not supported\n",
75 diffie_hellman_group_names
, group
);
80 diffie_hellman_group_names
, group
);
82 start_timing(&timing
);
83 for (round
= 0; round
< rounds
; round
++)
85 l
[round
] = lib
->crypto
->create_dh(lib
->crypto
, group
);
87 printf("A = g^a/s: %8.1f", rounds
/ end_timing(&timing
));
89 for (round
= 0; round
< rounds
; round
++)
91 l
[round
]->get_my_public_value(l
[round
], &chunk
);
92 r
->set_other_public_value(r
, chunk
);
96 r
->get_my_public_value(r
, &chunk
);
97 start_timing(&timing
);
98 for (round
= 0; round
< rounds
; round
++)
100 l
[round
]->set_other_public_value(l
[round
], chunk
);
102 printf(" | S = B^a/s: %8.1f\n", rounds
/ end_timing(&timing
));
105 for (round
= 0; round
< rounds
; round
++)
107 l
[round
]->destroy(l
[round
]);
112 int main(int argc
, char *argv
[])
122 lib
->plugins
->load(lib
->plugins
, NULL
, argv
[1]);
123 atexit(library_deinit
);
125 rounds
= atoi(argv
[2]);
127 for (i
= 3; i
< argc
; i
++)
131 for (j
= 0; j
< countof(groups
); j
++)
133 if (streq(groups
[j
].name
, argv
[i
]))
135 run_test(groups
[j
].group
, rounds
);
141 printf("group %s not found\n", argv
[i
]);