Help for this page

Select Code to Download


  1. or download this
    my $sig_msg = "$email::$name::$nick::$ts::$t";  # this is the message 
    +to be signed.
    
  2. or download this
    my $sig_msg = $email:: . $name:: . $nick:: . $ts:: . $t;
    
  3. or download this
    my $sig_msg = join "::", $email, $name, $nick, $ts, $t;