Re: SQL DB instead of index.txt

2002-01-28 Thread Dr S N Henson
Discussion moved from openssl-users... Bear Giles wrote: I can think of multiple common storage formats: text files, DBM files, LDAP, RDBMS. why not use an existing database abstraction layer such as libdbi or ODBC? Too abstract - queries are done with SQL statements. That's not

Postal Address for OpenSSL Group

2002-01-28 Thread Verdon Walker
Is there an official postal address for the OpenSSL group? We are filing some paperwork related to our use of OpenSSL and it requires an address. What would a person list? Verdon Walker(801) 861-2633[EMAIL PROTECTED]Novell Inc., the leading provider of Net Services Softwarewww.novell.com

Re: SQL DB instead of index.txt

2002-01-28 Thread Richard Levitte - VMS Whacker
From: Dr S N Henson [EMAIL PROTECTED] stephen.henson I've done some work on this but its only partly stephen.henson complete and sitting in a dark corner of my hard stephen.henson drive... I'm curious to see what you've come up with so far. stephen.henson BTW can we move this to openssl-dev?

Re: ftime missing, MacOSX (darwin 5.2), OpenSSL-SNAP-20020120

2002-01-28 Thread Dave Dykstra
On Thu, Jan 24, 2002 at 09:54:28AM +, Pier Fumagalli wrote: Dave Dykstra [EMAIL PROTECTED] wrote: I got around it temporarily by adding -DTIMES to the compile flags. Also I found I had to do the same -L hack in test/Makefile or the tests would fail. I then went back to 0.9.6c and

Re: ftime missing, MacOSX (darwin 5.2), OpenSSL-SNAP-20020120

2002-01-28 Thread Richard Levitte - VMS Whacker
From: Dave Dykstra [EMAIL PROTECTED] dwd I meant to say that I would like to be able to have the source use static dwd libraries without having to change some files every time there's a new dwd release, and without having to remove the system-installed copies of the dwd shared libraries. Below

Re: SQL DB instead of index.txt

2002-01-28 Thread Dr S N Henson
H, this doesn't seem to have made it to the list. No doubt there will be two copies now :-) Bear Giles wrote: I can think of multiple common storage formats: text files, DBM files, LDAP, RDBMS. why not use an existing database abstraction layer such as libdbi or ODBC? Too

Re: SQL DB instead of index.txt

2002-01-28 Thread Dr S N Henson
Richard Levitte - VMS Whacker wrote: From: Dr S N Henson [EMAIL PROTECTED] stephen.henson I've done some work on this but its only partly stephen.henson complete and sitting in a dark corner of my hard stephen.henson drive... I'm curious to see what you've come up with so far. I'll

Re: ftime missing, MacOSX (darwin 5.2), OpenSSL-SNAP-20020120

2002-01-28 Thread Dave Dykstra
On Mon, Jan 28, 2002 at 11:31:59PM +0100, Richard Levitte - VMS Whacker wrote: From: Dave Dykstra [EMAIL PROTECTED] dwd I meant to say that I would like to be able to have the source use static dwd libraries without having to change some files every time there's a new dwd release, and

Re: ftime missing, MacOSX (darwin 5.2), OpenSSL-SNAP-20020120

2002-01-28 Thread Pier Fumagalli
Folks, sorry but this week I'm moving places, so not much OpenSSL/OSX hacking going on... (Getting closer and closer to Ben Laurie)... Will reply when I'm settled in... Pier __ OpenSSL Project

Re: ftime missing, MacOSX (darwin 5.2), OpenSSL-SNAP-20020120

2002-01-28 Thread Rich Salz
currently. Also, IIRC, on most Unixen, linking with libcrypto.a rather than -lcrypto makes the linker suck in everything from that library, regardless of if they are needed or not, while -lcrypto makes the linker select the needed object files. I may be wrong about this. (Hi Dave! :) I

Error Stack Question

2002-01-28 Thread Verdon Walker
We ran into a small piece of code in ssl_rsa.c that is confusing us. In SSL_CTX_use_certificate_chain_file(), the following code fragment exists: ret=SSL_CTX_use_certificate(ctx,x);if (ERR_peek_error() != 0) ret = 0; /* Key/certificate mismatch doesn't imply ret==0 ... */if (ret)... Isn't

query

2002-01-28 Thread Vandana Chopra
hi, I am trying to install the openssl library on Itanium -64 which is running on HP-UX operating system which uses 64-bit cc compiler . The installation quits with error-code 1 after it does making all in apps Could you please help me out. Thanks

Re: SQL DB instead of index.txt

2002-01-28 Thread Bear Giles
I'll dig out the code. It was largely based around the PKCS#11 functionality but with an OpenSSL flavour. That is you have a load of objects each of which is a set of attributes. You can then lookup based on exact matches of each attribute. This is query by example. It has some benefits,