| 259 | |
| 260 | template <class D> |
| 261 | void BenchMarkKeyAgreement(const char *filename, const char *name, double timeTotal) |
| 262 | { |
| 263 | FileSource f(filename, true, new HexDecoder()); |
| 264 | D d(f); |
| 265 | BenchMarkKeyGen(name, d, timeTotal); |
| 266 | BenchMarkAgreement(name, d, timeTotal); |
| 267 | } |
| 268 | |
| 269 | extern double g_hertz; |
| 270 |
nothing calls this directly
no test coverage detected