[EMAIL PROTECTED] wrote on 02/14/2008 05:45:21 PM:

> Can anyone please help me out on this...Thanks
> --
> Shanku
> 
> --- Shanku Roy <[EMAIL PROTECTED]> wrote:
> 
> > Hi Folks,
> >          Can anyone please point me to the location of function 
definition of i2d_ASN1_INTEGER
> > () in OpenSSL source code. I could trace only till the following in 
the header files:
> > 
> > 
> > file crypto/asn1/asn1.h:
> > 
> > #define I2D_OF(type) int (*)(type *,unsigned char **)
> > 

Try something like that (after make):

$ pwd
/tmp/openssl-0.9.8g
$ find . -name "*.o" -exec nm -o --defined-only {} \; | grep 
d2i_ASN1_INTEGER
../crypto/asn1/tasn_typ.o:00001060 T d2i_ASN1_INTEGER
$ cd ./crypto/asn1/
$ gcc -E tasn_typ.c | grep d2i_ASN1_INTEGER | indent

Best regards,
--
Marek Marcola <[EMAIL PROTECTED]>

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

Reply via email to