OpenSSL compilation for mips

2005-08-19 Thread Krishna M Singh
Hi All I am trying to compile OpenSSL over mips for big-endian. It compiles and links well for ppc vxworks box but for mips Bigendian it compiles well. But when we try to link the mips OpenSSL library with our SSL client, it shows following error

Re: ecc keys of openssl- support by IE and Firefox

2005-08-19 Thread Nils Larsch
Gaurav Kumar wrote: i am newbie to ECC, kindly let me know if ECC keys generated by openssl are supported by Internet explorer / FireFox or not. it should be noted that there's still no RFC for tls with ecc, so everything is still very experimental. Nils

Re: COMP_zlibd don't return a valid method

2005-08-19 Thread prakash babu
Hello Ignacio, You can also use the installed libraries but make sure that your program uses them # gmake install # gcc test.c -LOpenSSLInstall Directory/lib -IOpenSSLInstallDirectory/include -lssl -lcrypto -lz -ldl thanks, PrakashIgnacio Butler [EMAIL PROTECTED] wrote: thank you, it

Re: OpenSSL compilation for mips

2005-08-19 Thread vijay basav
hi i have compiled openssl for vxworks big_endian and it seemed to work fine. The changes to be done in configure file is replace DL_ENDIAN by DB_ENDIAN, -EL by -EB, include these -mips2, -DCPU=MIPS32, -DMIPSLE regards vijayKrishna M Singh [EMAIL PROTECTED] wrote: Hi AllI am trying to compile

Re: OpenSSL compilation for mips

2005-08-19 Thread vijay basav
hi i have compiled openssl for vxworks big_endian and it seemed to work fine. The changes to be done in configure file is replace DL_ENDIAN by DB_ENDIAN, -EL by -EB, include these -mips2, -DCPU=MIPS32, -DMIPSLE regards vijayKrishna M Singh [EMAIL PROTECTED] wrote: Hi AllI am trying to compile

undefined references compiling demo program

2005-08-19 Thread Kevin L. King
I installed OpenSSL 0.9.8 on Fedora in the default /usr/local/ssl directory. I tried compiling mkcert.c in the ../openssl-0.9.8/demos/x509 directory like this: gcc -lcrypto -lssl -L/usr/local/ssl/lib -I/usr/local/ssl/include mkcert.c I get 4 undefined references for these functions:

Re: undefined references compiling demo program

2005-08-19 Thread Richard Levitte - VMS Whacker
In message [EMAIL PROTECTED] on Fri, 19 Aug 2005 16:51:59 -0700, Kevin L. King [EMAIL PROTECTED] said: kevink I installed OpenSSL 0.9.8 on Fedora in the default kevink /usr/local/ssl directory. I tried compiling mkcert.c in the kevink ../openssl-0.9.8/demos/x509 directory like this: kevink