#include "ebats.h" int copyrightclaims(void) { return 0; } int patentclaims(void) { return 0; } int fakekeyattacks(void) { return 0; /* prime is strong; bottom bit of key is leaked anyway; no supergroups */ } int timingattacks(void) { return 100; /* OpenSSL leaks some secret information through timing */ } double multiplekeycdhchance(double e,double s,double k) { return dlchance(1024,e,s,k); } double cdhchance(double e,double s) { return multiplekeycdhchance(e,s,1); }