Not for 'how-to' coding questions but PHP theory instead, this forum is here for those of us who wish to learn about design aspects of programming with PHP.
This is My FP on the board and I am lookin foward to bein a active member of it
Anyways... Heres my idea, ive been workin with the RSA encryption algorithim and know it like the back of my own hand. Im wondering if its possible to use large numbers in php efficiently ie(over 64 bit integers) and use a stable random number generator? Ive thought of using BCmath or somthing in GMP but i want to use it on windows too... Any ideas?
As of php 4.2 ( I think ). You don't have to seed the random number generator to get a good "random" number. However, if you'd like to make this number even more random and don't feel like playing with /dev/urandom or /dev/random (which sucks btw) check out egd http://egd.sourceforge.net/ don't know if it'll work on windows w/o cygwin or something of the such though...