diff options
| author | Charles.Forsyth <devnull@localhost> | 2008-06-11 12:31:51 +0000 |
|---|---|---|
| committer | Charles.Forsyth <devnull@localhost> | 2008-06-11 12:31:51 +0000 |
| commit | 31a18a6996a6b5927e39cc553696c167e6c88e3d (patch) | |
| tree | 40433c168b91d5c224cb8c338054eb9fb2ecbd37 /libkeyring/egalg.c | |
| parent | ac4d5a82181d3f4d63469e7745ccd38126c04b24 (diff) | |
20080611-1331
Diffstat (limited to 'libkeyring/egalg.c')
| -rw-r--r-- | libkeyring/egalg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libkeyring/egalg.c b/libkeyring/egalg.c index 98567c95..3a914d0f 100644 --- a/libkeyring/egalg.c +++ b/libkeyring/egalg.c @@ -145,13 +145,13 @@ eg_genfrompk(void *vpub) } static void* -eg_sign(BigInt mp, void *key) +eg_sign(mpint* mp, void *key) { return egsign((EGpriv*)key, mp); } static int -eg_verify(BigInt mp, void *sig, void *key) +eg_verify(mpint* mp, void *sig, void *key) { return egverify((EGpub*)key, (EGsig*)sig, mp) == 0; } |
