How do I create one of those random strings with numbers and characters, used for session ID's?
I used to do this:
$id = Apache::Session::Generate::MD5::generate();
...and then I had a long string that looked something like this:
84jg74yg457h4gd6t83nfu5h8r654h5ejg783
The new webserver doesn't have the old module Apache::Session::Generate::MD5::generate() instead they got something called Digest::MD5;
Can I use that instead to make the session ID string? and how?
Or does anyone know an easy way to make a long string of mixed random numbers and characters??
Thanks alot
I used to do this:
$id = Apache::Session::Generate::MD5::generate();
...and then I had a long string that looked something like this:
84jg74yg457h4gd6t83nfu5h8r654h5ejg783
The new webserver doesn't have the old module Apache::Session::Generate::MD5::generate() instead they got something called Digest::MD5;
Can I use that instead to make the session ID string? and how?
Or does anyone know an easy way to make a long string of mixed random numbers and characters??
Thanks alot