Is configuration without sockets possible?

2006-02-13 Thread Rutger Hofman
Hi list, We are developing an embedded device where there are no sockets. We have other communication media, though, like radio signals, for which we need authentication/encryption, and OpenSSL is an obvious choice for that. Now, my question: Is configuration of OpenSSL without sockets

RE: Is configuration without sockets possible?

2006-02-13 Thread Usman Riaz
Hi! One way is to use bio_pairs. There is an example of bio_pair usage in 'ssl_test.c' file in the OpenSSL package. Hope this helps, Regards, Usman. From: Rutger Hofman [EMAIL PROTECTED] Reply-To: openssl-users@openssl.org To: openssl-users@openssl.org Subject: Is configuration without

Re: Is configuration without sockets possible?

2006-02-13 Thread Rutger Hofman
Yes, thanks, I know about bio_pairs, and I think I know how to build an SSL channel over my custom communications device -- at least, in principle I do. I think I have been to terse in my original post. The problem is: I don't have anything like sys/socket.h, so the configuration should be done

Re: Is configuration without sockets possible?

2006-02-13 Thread Dr. Stephen Henson
On Mon, Feb 13, 2006, Rutger Hofman wrote: Yes, thanks, I know about bio_pairs, and I think I know how to build an SSL channel over my custom communications device -- at least, in principle I do. I think I have been to terse in my original post. The problem is: I don't have anything like