Help for this page

Select Code to Download


  1. or download this
    sub get_md5 
    {
     md5_hex("$secret" . "$_")
    };
    
  2. or download this
    sub get_md5 
    {
     my($my_secret, $data) = @_;
     md5_hex($my_secret . $data);
    };