Re: [LTC] ECC <= 112



Nils Durner wrote:
-int ecc_sign_hash(const unsigned char *in, unsigned long inlen,
- unsigned char *out, unsigned long *outlen,
+int _ecc_sign_hash(const unsigned char *in, unsigned long inlen,
+ void **r, void **s,
prng_state *prng, int wprng, ecc_key *key)

Sorry for the second reply ...

I should also point out leading function names with an underscore is
not a portable convention [iirc]. It's generally supported on most
platforms but is a bad idea for general linking.

:-)

I'd call this

ecc_sign_raw()

Tom

.