我已经在 C+++ 中实施了 RSA 算法, 程序正在运行中, 然而随机调用正在使程序慢化。 我用 Srand 来生成两个质数和加密密钥( e) 。 这里的片段
...............................................
do
{
p = make_prime_number();
q = make_prime_number();
}while(p == q);
phi = (p - 1) * (q - 1);
n = p * q;
do
{
e = random_builder (20);
int *t = extended_gcd (e, phi);
d = t[0];
}while(gcd(e, phi) != 1 || d < 1 || d >= n );
...............................................
int random_builder(const int max)
{
srand(time(NULL));
return rand() % max + 1;
}
bool is_prime(const int num)
{
for(int i = 2; i <= num/2; i++)
if(num % i == 0)
return false;
return true;
}
int make_prime_number()
{
int num;
do
{
num = random_builder(20);
}while(not is_prime(num));
return num;
}
我们能不能通过改变草原的种子来加快这个过程?