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?