in reply to Typekey API
Perl reads that as:my $sig_msg = "$email::$name::$nick::$ts::$t"; # this is the message +to be signed.
because "::" is the package separator an it is legal to have a variable with an "empty" name like $foo:: (the "" scalar in package 'foo'). I suggest replacing the line withmy $sig_msg = $email:: . $name:: . $nick:: . $ts:: . $t;
and turning warnings on, too. Apart from this, I don't know what to tell you about your problem.my $sig_msg = join "::", $email, $name, $nick, $ts, $t;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Typekey API
by Anonymous Monk on May 30, 2006 at 18:01 UTC |