in reply to Math::PARI and Crypt::RSA

Was this a typo?

my $signature = getSignatures($privateKey, $binarySecurityToken, $time ++stamp, $content); #==here it's getSignatures print $signature; #### sub getSignature($$) #==here it's <b>getSignature</b> {
In case it wasn't clear what I meant, the sub is defined as "getSignature($$)", while you called it as "getSignatures" (note the missing s at the end of the function name.
Otherwise, the previous response should get you there :-)

Replies are listed 'Best First'.
Re^2: Math::PARI and Crypt::RSA
by shug94 (Sexton) on Oct 27, 2009 at 00:43 UTC
    No, not a typo, I just didn't include a getSignatures function in my question which calls getSignature a bunch of times based on what inputs we have.

    Sorry for not being clear