- 39ADDB10B86590187C6F9020DD894B4EFA7256381ACEFDEB2C68ABF8A37CBF011909E9BB9DFDB38FFB2FB4B3F0341AE39CB2C9BE6A1425EC139DA4E47C37B33B
+ FEAFFACD0ECCEEC5B42D086F1755FEDE58DD7244B52B8EF599B7E4AD79B149FCBE55F036A1C46F5BAE0A00DD3C50B1DC7D8C1BDE9958934CBCD8D01862E29B9D
eucrypt/smg_rsa/include/knobs.h
(3 . 5)(3 . 17)
98
99 #define ENTROPY_SOURCE "/dev/ttyUSB0"
100
101 /*
102 * This is the number of witnesses checked by the Miller-Rabin (MR) algorithm for each candidate prime number.
103 * The value of M_R_ITERATIONS directly affects the outer bound of MR which is calculated as 4^(-M_R_ITERATIONS)
104 * S.MG's choice of 16 here means an outer bound of 4^(-16) = 0.0000000002,
105 which is currently considered sufficient for Eulora's needs.
106 If your needs are different, change this knob accordingly.
107 * NB: if you use this to make keys for some serious use, an outer bound of 1e-10 is really not nearly good enough
108 and therefore you'll probably want to *increase* the value of this knob.
109 */
110 #define M_R_ITERATIONS 16
111
112
113 #endif /*SMG_RSA_KNOBS_H*/
114