RE: Building OpenSSL without Crypto Support

2008-05-08 Thread David Schwartz
I'm trying to build OpenSSL with least support for crypto algorithms expt the cases where they are really needed for it to work . My sole purpose of all this is to reduce the memory footprint of the application that uses OpenSSL.. All I want is the procedure to do so on a WIN32 platform ??

RE: Building OpenSSL without Crypto Support

2008-05-08 Thread Bill Colvin
I add the flags no-md2 no-ripemd160 no-bf no-camellia no-cast no-idea no-mdc2 no-rc5 Bill From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of vaibhav bindroo Sent: May 8, 2008 1:17 AM To: openssl-users@openssl.org Subject: Re: Building OpenSSL

Re: Building OpenSSL without Crypto Support

2008-05-08 Thread vaibhav bindroo
Thanks for the response . I tried out various flags and finally ended up striping it to arnd 500 KB which seems ok for my application requirements . Lets see whether it is feasible enough to be portable across various platforms in immediate future . Thanks ~Vaibhav Bindroo

RE: Building OpenSSL without Crypto Support

2008-05-07 Thread David Schwartz
The application I am developing requires HTTP over SSL connection and hence I am using OpenSSL for SSL support . But Using OpenSSL with all the cryptographic libraries included increases the size of my app heavily . To deal with that , I want to build a OpenSSL library with NULL encryption (

RE: Building OpenSSL without Crypto Support

2008-05-07 Thread Marek . Marcola
Hello, [EMAIL PROTECTED] wrote on 05/07/2008 12:51:21 PM: The application I am developing requires HTTP over SSL connection and hence I am using OpenSSL for SSL support . But Using OpenSSL with all the cryptographic libraries included increases the size of my app heavily . To deal with

Re: Building OpenSSL without Crypto Support

2008-05-07 Thread vaibhav bindroo
Hi , Thanks for the quick reply from your side . I understand and respect your opinion regarding OpenSSL usage .But I need to strip the Openssl library to the bare minimum for my own use with the app as I wil be using my own crypto library . I wanted to ask how can I do it , which linker flags

RE: Building OpenSSL without Crypto Support

2008-05-07 Thread David Schwartz
Thanks for the quick reply from your side . I understand and respect your opinion regarding OpenSSL usage .But I need to strip the Openssl library to the bare minimum for my own use with the app as I wil be using my own crypto library . So is your question really how can I plug my own

Re: Building OpenSSL without Crypto Support

2008-05-07 Thread vaibhav bindroo
Hi, I'm trying to build OpenSSL with least support for crypto algorithms expt the cases where they are really needed for it to work . My sole purpose of all this is to reduce the memory footprint of the application that uses OpenSSL.. All I want is the procedure to do so on a WIN32 platform ??