Hi I am required to do my own implementation of the RSA algorithm in php. The only thing I have a problem with is the part that calculates the private key. The way my function works is by getting a random number and checking to see if it fits into the private key formula. This works fine, however the only problem is that when using very large numbers, it takes ages and the page times out. I was wondering, is there a better way that I can implement this without having to keep generating random numbers? Here is the required code:
$decrypt = rand(1,($phi-1));
while(!private($decrypt, $encrypt, $phi)){
$decrypt = rand(1,($phi-1));
}
...
function private($decrypt, $encrypt, $phi) {
if(($decrypt * $encrypt) % ($phi) == 1){
Return true;
}
else{
Return false;
}
}