View Single Post
  #3  
Old 07-25-2007, 22:03
TmC TmC is offline
VIP
 
Join Date: Aug 2004
Posts: 330
Rept. Given: 1
Rept. Rcvd 15 Times in 9 Posts
Thanks Given: 2
Thanks Rcvd at 23 Times in 17 Posts
TmC Reputation: 15
Quote:
Originally Posted by tofu-sensei
x is the private key (used for signing), y the public key (used to verify a signature), the actual signature is comprised of both r and s.
And how do I pass the ECPoint parameters?

ECDSAVerify(T, r, s, p, a, n, g, y, ok);

T, r and s are string so no problem, T:= 'somestring';
p,a,n are FGInt so no problem, p := Base10ToFGInt('somestring');

but for g and y?
Reply With Quote