where is a good place to put an acc_init() function that needs to be
called once? and where to put the counterpart, a acc_finish() call?

I have added my .c modules to the crypto/bn folder and added them to the
Makefile. 
After "./config" and "make" the .o object files get compiled correctly.
With "nm -s libcrypto.a" I can see that it seems to integrate my
routines properly if I interpret the output correctly.

However when it gets to linking in openssl-0.9.8/apps it says

../libcrypto.a(bn_mul.o)(.text+0x1550): In function `BN_mul':
: undefined reference to `acc_multiply'
collect2: ld returned 1 exit status

I thought my routine acc_multiply was in libcrypto.a !?

BN_mul() in bn_mul.c cally my routine.

Thanks.

-- 
Christian Kirbach <[EMAIL PROTECTED]>
PGP key 1FE120E3

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       openssl-dev@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to