#ifndef SMG_RSA_KNOBS_H #define SMG_RSA_KNOBS_H #define ENTROPY_SOURCE "/dev/ttyUSB0" /* * This is the number of witnesses checked by the Miller-Rabin (MR) algorithm for each candidate prime number. * The value of M_R_ITERATIONS directly affects the outer bound of MR which is calculated as 4^(-M_R_ITERATIONS) * S.MG's choice of 16 here means an outer bound of 4^(-16) = 0.0000000002, which is currently considered sufficient for Eulora's needs. If your needs are different, change this knob accordingly. * NB: if you use this to make keys for some serious use, an outer bound of 1e-10 is really not nearly good enough and therefore you'll probably want to *increase* the value of this knob. */ #define M_R_ITERATIONS 16 #endif /*SMG_RSA_KNOBS_H*/