Re: Question about examples in openssl doc X509_STORE_CTX_verify_cb

2022-03-14 Thread Viktor Dukhovni
On Mon, Mar 14, 2022 at 11:25:51AM -0700, Edward Tsang via openssl-users wrote: > https://www.openssl.org/docs/man1.1.1/man3/X509_STORE_CTX_verify_cb.html > > I am trying to figure out how this example works but it does not seem to > bypass the (use the second example of X509_V_ERR_CERT_HAS_EXPI

Question about examples in openssl doc X509_STORE_CTX_verify_cb

2022-03-14 Thread Edward Tsang via openssl-users
link: https://www.openssl.org/docs/man1.1.1/man3/X509_STORE_CTX_verify_cb.html I am trying to figure out how this example works but it does not seem to bypass the (use the second example of X509_V_ERR_CERT_HAS_EXPIRED) However the caller code ll long res = SSL_get_verify_result( sslCtx ); still

Re: Examples of adding Private Enterprise Numbers (PEN's) Extensions to CSR

2021-10-15 Thread Jakob Bohm via openssl-users
On 2021-10-14 18:43, Philip Prindeville wrote: Hi, I need to generate CSR's with some Extensions included that use our PEN's as allocated by IANA. Are there any examples of this? Also, I'm looking at X509_REQ_add_extensions_nid() and it takes a STACK_OF(X509_EXTENSION) but

Examples of adding Private Enterprise Numbers (PEN's) Extensions to CSR

2021-10-14 Thread Philip Prindeville
Hi, I need to generate CSR's with some Extensions included that use our PEN's as allocated by IANA. Are there any examples of this? Also, I'm looking at X509_REQ_add_extensions_nid() and it takes a STACK_OF(X509_EXTENSION) but it doesn't seem to actually iterate through th

Shutdown examples/explanations

2019-05-05 Thread Paul Smith
Does anyone have a straightforward example of the canonical way to handle SSL_shutdown() in OpenSSL 1.1.1? I mean both when my code is the initiator of the shutdown and also when I'm the peer, and also for both blocking and non-blocking BIOs? I've read and re-read the SSL_shutdown() man page and

Re: [openssl-users] Two broken SSL_ERROR_WANT_READ/WRITE handling examples - how exploit cpu-hogging and zombification, and, how badly broken do you consider them to be?

2015-02-28 Thread Tinker
Program (1) below goes into 100% CPU consumption by running a dummy TCP server e.g. "nc -l 1 > /dev/null" and making the program connect to that. That's enough of an exploit to show that a program with this behavior is absolutely broken. Thanks. On 2015-02-26 00:01, Tinker wrote: Dea

[openssl-users] Two broken SSL_ERROR_WANT_READ/WRITE handling examples - how exploit cpu-hogging and zombification, and, how badly broken do you consider them to be?

2015-02-25 Thread Tinker
Dear list, I have been given two example programs that I have been requested to provide exploits for. I would kindly ask you to suggest me the simplest way to cause as much cpu-hogging in the first one, and zombification in the second, as possible. For causing this, you may use * As serv

Need guidance, and examples, of using HTML5's keygen &c., with cgi program

2013-01-15 Thread Ted Byers
My searches using Google have resulted in an abysmal signal to noise ratio, and everything I have found so far covers one part of the architecture needed to the complete exclusion of all else. For example, I found JavaScript to manipulate the client side controls so that the form would function in

certificate problems http://www.rtfm.com/openssl-examples/

2011-09-24 Thread mattj610
In regards to the examples given at http://www.rtfm.com/openssl-examples/ I have been trying to set up pem files so that the connection will work by self signed certificates. I can get the wclient to connect only with the -i option, as I understand the example pem files expired long ago. I have

Re: web site with many openssl examples

2011-06-30 Thread Peter Sylvester
On 06/30/2011 07:29 PM, derleader mail wrote: Hi, I'm looking for complete examples of implementing OpenSSL code - server and client. Can you give a link? Best wishes Peter the source code of s_client and s_server or ssl_use.c of curl for a client part or mod_ssl of apache

Re: web site with many openssl examples

2011-06-30 Thread Sushil Singh
> > Hi > Any body having experience it enable CRL checking in existing OpenSSL client. I need to check the CRL for revoked certificate before attempting SSL_connect to server. Your help in this regard is really appreciated.. Thanks in advance. Br;Sushil

web site with many openssl examples

2011-06-30 Thread derleader mail
Hi, I'm looking for complete examples of implementing OpenSSL code - server and client. Can you give a link? Best wishes Peter

RE: Re: Best book with examples for OpenSSL

2011-04-28 Thread Jeremy Farrell
From: derleader mail Sent: Thursday, April 28, 2011 10:11 PM >I am looking for specific information on using the library in a >multi-threaded / asynchronous IO server (Windows - using IOCP). >I'd appreciate any information on the subject. An example would be great. > >Best regards, >Andre Hi, I

Re: Re: Best book with examples for OpenSSL

2011-04-28 Thread derleader mail
>Hi. > >I'm in the process of learning the API myself. I had concerns about the >book "Network Programming with OpenSSL". >Having consulted someone with experience in this matter it appears that >the API itself has changed very little and the >book is still relevant. The cryptographic f

Re: Best book with examples for OpenSSL

2011-04-28 Thread Andre Gionet
Hi. I'm in the process of learning the API myself. I had concerns about the book "Network Programming with OpenSSL". Having consulted someone with experience in this matter it appears that the API itself has changed very little and the book is still relevant. The cryptographic functions withi

Best book with examples for OpenSSL

2011-04-28 Thread derleader mail
Hi, I found several books about OpenSSL. This book seems the best one http://oreilly.com/catalog/9780596003944 There is another book for http://www.opensslbook.com/ but it seems very outdated. Is there other books or tutorials with ready made examples? Regards Peter

Re: Examples to encrypt/decrypt

2011-03-25 Thread Anthony Gabrielson
On Mar 25, 2011, at 4:45 PM, Jeffrey Walton wrote: > On Fri, Mar 25, 2011 at 3:56 PM, Anthony Gabrielson > wrote: >> This will do what you want: >> http://agabrielson.wordpress.com/2010/07/15/openssl-an-example-from-the-command-line/ > >memset(plaintext,0,sizeof(plaintext)); > > The optimiz

RE: Examples to encrypt/decrypt

2011-03-25 Thread Jeremy Farrell
> From: David Schwartz [mailto:dav...@webmaster.com] > Sent: Friday, March 25, 2011 11:44 PM > > On 3/25/2011 4:17 PM, Jeremy Farrell wrote: > > >> From: Jeffrey Walton > >> Sent: Friday, March 25, 2011 8:45 PM > >> On Fri, Mar 25, 2011 at 3:56 PM, Anthony > Gabrielson wrote: > > >>> This wil

Re: Examples to encrypt/decrypt

2011-03-25 Thread David Schwartz
On 3/25/2011 4:17 PM, Jeremy Farrell wrote: From: Jeffrey Walton Sent: Friday, March 25, 2011 8:45 PM On Fri, Mar 25, 2011 at 3:56 PM, Anthony Gabrielson wrote: This will do what you want: http://agabrielson.wordpress.com/2010/07/15/openssl-an-example-from-the-command-line/ memset(p

RE: Examples to encrypt/decrypt

2011-03-25 Thread Jeremy Farrell
> From: Jeffrey Walton > Sent: Friday, March 25, 2011 8:45 PM > On Fri, Mar 25, 2011 at 3:56 PM, Anthony Gabrielson > wrote: > > This will do what you want: > > > > http://agabrielson.wordpress.com/2010/07/15/openssl-an-example-from-the-command-line/ > > memset(plaintext,0,sizeof(plaintext)

Re: Examples to encrypt/decrypt

2011-03-25 Thread Jeffrey Walton
--- Original Message - > From: "Venkateswara Rao Chikkireddi (HSSL-Bangalore)" > To: openssl-users@openssl.org > Sent: Friday, March 25, 2011 12:41:36 PM > Subject: Examples to encrypt/decrypt > > Hi > > > > Could you please provide examples to encrypt/decr

Re: Examples to encrypt/decrypt

2011-03-25 Thread Anthony Gabrielson
This will do what you want: http://agabrielson.wordpress.com/2010/07/15/openssl-an-example-from-the-command-line/ - Original Message - From: "Venkateswara Rao Chikkireddi (HSSL-Bangalore)" To: openssl-users@openssl.org Sent: Friday, March 25, 2011 12:41:36 PM Subject: E

Examples to encrypt/decrypt

2011-03-25 Thread Chikkireddi, Venkateswara Rao (HSSL-Bangalore)
Hi Could you please provide examples to encrypt/decrypt 256 char length of data using AES256 algorithm Thanks and Regards C V Rao

Re: CMS/ANS1 examples

2009-05-20 Thread Dr. Stephen Henson
On Wed, May 20, 2009, Chris Bare wrote: > > > Are there any good examples of using the ASN1 and CMS functions in > > > openssl 1.0 > > > for generic operations? > > > I'm trying to talk to an SCVP server, which takes requests wrapped in DER > > &g

Re: CMS/ANS1 examples

2009-05-20 Thread Chris Bare
> > Are there any good examples of using the ASN1 and CMS functions in openssl > > 1.0 > > for generic operations? > > I'm trying to talk to an SCVP server, which takes requests wrapped in DER > > encoded > > CMS ContentInfo structure. So far I can&#x

Re: CMS/ANS1 examples

2009-05-20 Thread Dr. Stephen Henson
On Wed, May 20, 2009, Chris Bare wrote: > Are there any good examples of using the ASN1 and CMS functions in openssl 1.0 > for generic operations? > I'm trying to talk to an SCVP server, which takes requests wrapped in DER > encoded > CMS ContentInfo structure. So far I c

CMS/ANS1 examples

2009-05-20 Thread Chris Bare
Are there any good examples of using the ASN1 and CMS functions in openssl 1.0 for generic operations? I'm trying to talk to an SCVP server, which takes requests wrapped in DER encoded CMS ContentInfo structure. So far I can't find an openssl function to output a CMS that way, so any ex

Re: question about generating keys/certs to go with Rescorla's book examples

2009-02-20 Thread Kevin D. Clark
A few months ago I asked: > I am having some trouble with the examples in Rescorla's _SSL and TLS: > Designing and Building Secure Systems_ book. I feel like I am making > a minor mistake somewhere, but I'm just overlooking where. I would > appreciate another set of eyes

question about generating keys/certs to go with Rescorla's book examples

2008-09-16 Thread Kevin D. Clark
I am having some trouble with the examples in Rescorla's _SSL and TLS: Designing and Building Secure Systems_ book. I feel like I am making a minor mistake somewhere, but I'm just overlooking where. I would appreciate another set of eyes to tell me where I am going wrong. First o

Re: Examples of blowfish.h code for C?

2007-11-03 Thread Brad Hards
On Friday 02 November 2007 12:13, Joel Christner wrote: > > Please pardon the newbie question. I was curious if anyone had any links > > or references that they could point me to for more details on how to use > > blowfish.h with C? I've gone through the man pages but was hoping for > > something

Re: Examples of blowfish.h code for C?

2007-11-01 Thread Joel Christner
Anyone? On 10/30/07, Joel Christner <[EMAIL PROTECTED]> wrote: > > Hello, > > Please pardon the newbie question. I was curious if anyone had any links > or references that they could point me to for more details on how to use > blowfish.h with C? I've gone through the man pages but was hoping fo

Examples of blowfish.h code for C?

2007-10-30 Thread Joel Christner
Hello, Please pardon the newbie question. I was curious if anyone had any links or references that they could point me to for more details on how to use blowfish.h with C? I've gone through the man pages but was hoping for something more intuitive, step-by-step, or outlining when to use specific

PSK usage( RFC 4279) - examples and docs

2007-04-12 Thread mahendra
Hi All. I am looking for some docs which explain how to use PSK based SSL connection ( RFC 4279). I tried executing the example apps, but they asked for certificates. My understanding is that PSK based SSL connection does not require certificates. Am I correct ? Where can I find exmaple implemten

Recall: Application Development & Makefile examples

2007-02-21 Thread Roy, Anindya \(Anindya\)
Roy, Anindya (Anindya) would like to recall the message, "Application Development & Makefile examples ". __ OpenSSL Project http://www.openssl.org User Suppor

RE: Application Development & Makefile examples

2007-02-21 Thread Roy, Anindya \(Anindya\)
& Makefile examples Hello, I am new to Application development using OpenSSL. Currently I have installed 0.9.7b (the version I need to use) & would like to write a small application using the OpenSSL function calls & would like to know if I c

Re: Application Development & Makefile examples

2007-02-21 Thread Ravi Bhatt
to know if I can find some Makefile examples to include the libraries & header files for my application to compile & link. Appreciate any help. Regards, Ravi - Looking for earth-friendly autos? Browse Top Cars by "Green Ra

Re: DTLS examples?

2005-10-23 Thread Adam M
Hi Manuel, Thanks a million for the examples. They look great, and will help me tremendously. -Adam On Sun, 23 Oct 2005 21:09:45 +0200, "Manuel Schölling" <[EMAIL PROTECTED]> said: > Hi, > > > The DTLS paper keeps talking about how similar it is to TLS, but I

Re: DTLS examples?

2005-10-23 Thread Manuel Schölling
Hi, The DTLS paper keeps talking about how similar it is to TLS, but I haven't really coded TLS either, so that doesn't help me much. A simple DTLS example would help tremendously. you can find a good example for nonblocking transfer here: http://www.estacado.net/resip/sip/resiprocate/doxygen/

DTLS examples?

2005-10-21 Thread Adam M
Hi all, I'm curious if anyone has any actual DTLS examples kicking around. I'm very interested in giving it a shot, but I haven't found much for API docs or even simple examples. The DTLS paper keeps talking about how similar it is to TLS, but I haven't really coded TLS eit

Re: examples of -extfile file -extensions section

2004-11-10 Thread ray v
one be so kind as to post examples of > their > > extfile or extensions section? > > Here's an example of a shell script that generates > an entire > PKI: root, two intermediates, and one SSL (server) > end user. > > This is one of about 35 of these I did tryi

Re: examples of -extfile file -extensions section

2004-11-10 Thread ray v
Thank Charles! This completely clears things up for me. AWESOME! --- Charles B Cranston <[EMAIL PROTECTED]> wrote: > > Could someone be so kind as to post examples of > their > > extfile or extensions section? > > Here's an example of a shell script that genera

Re: examples of -extfile file -extensions section

2004-11-10 Thread Charles B Cranston
Could someone be so kind as to post examples of their extfile or extensions section? Here's an example of a shell script that generates an entire PKI: root, two intermediates, and one SSL (server) end user. This is one of about 35 of these I did trying to figure out why the IBM HTTP Server an

examples of -extfile file -extensions section

2004-11-09 Thread ray v
Could someone be so kind as to post examples of their extfile or extensions section? thanks in advance! __ Do you Yahoo!? Check out the new Yahoo! Front Page. www.yahoo.com

Re: valgrind reports failures on examples

2003-12-18 Thread Andrew Mann
Syscall write(buf) contains uninitialized or unaddressable bytes doesn't mean that it's sending uninitialized memory. I've run across this one a number of times when dealing with socket code. If you allocate say a 64k buffer (~ max datagram size) and then call send() with a length of 100 byt

RE: valgrind reports failures on examples

2003-12-18 Thread Lee Dilkie
> Most of the errors seem to be in one of these classes: > - Conditional jump or move depends on uninitialised value(s) > - Use of uninitialized value > > When I run it in my own code (which seems correct to me), I > see this also: > - Syscall param write(buf) contains uninitialised or > unaddressa

Re: valgrind reports failures on examples

2003-12-18 Thread Scott Lamb
Scott Lamb wrote: Maybe I should also mention that my library and unit tests are multi-threaded. (I have defined the appropriate locking callbacks.) I could easily see how that'd aggravate any problems. I forgot to mention: I'm also using a debug malloc library (). So wh

Re: valgrind reports failures on examples

2003-12-18 Thread Scott Lamb
Michal Dobaczewski wrote: Scott Lamb wrote: Has anyone run these examples through valgrind before? Have you found similar problems? Yes, I've had similar problems with openSSL 0.9.6. I was getting this kind of error messages when runing both my appllication and openssl s_client

Re: valgrind reports failures on examples

2003-12-18 Thread Michal Dobaczewski
Scott Lamb wrote: Has anyone run these examples through valgrind before? Have you found similar problems? Yes, I've had similar problems with openSSL 0.9.6. I was getting this kind of error messages when runing both my appllication and openssl s_client under valgrind. So far I was unab

valgrind reports failures on examples

2003-12-18 Thread Scott Lamb
I was getting a _lot_ of valgrind failures on my code using OpenSSL. I tried to simplify things by just running the examples included in the distribution. valgrind is still reporting a lot of bugs on all the examples. (428489 errors from 1928 contexts on ssl_test.) Most of the errors seem to

Re: Builing examples with VC++

2003-02-26 Thread Rodney Thayer
At 09:57 AM 2/25/2003 +, Kevin Murrell wrote: >Hi all > >Sucessfully installed and built the latest release. I am now working my >way through the examples from the (very good) O'Reilly book. I am >having trouble linking them, in particular am unsure which library I >sh

Re: documentation / examples X509 cert code

2002-12-13 Thread Lutz Jaenicke
On Fri, Dec 13, 2002 at 09:57:18AM +0100, Martin Witzel wrote: > > > >Is there a (possibly *nix) tool that > >converts all the .pod files quickly to e.g. html? for i in *.pod ; do pod2html $i done :-) Lutz -- Lutz Jaenicke [EMAIL PROTECTED] http://www.aet.

Re: documentation / examples X509 cert code

2002-12-13 Thread Martin Witzel
>Is there a (possibly *nix) tool that >converts all the .pod files quickly to e.g. html? I second that motion Regards, Martin __ OpenSSL Project http://www.openssl.org User Support Mailing Lis

Re: documentation / examples X509 cert code

2002-12-12 Thread Paul Koster
g. AC support will be added at some point. At present we > could do with some AC examples, preferably ones which can be made public. Is this 'play' area publicly accessible? If yes, where to locate it? I could not find anything on http://dev.openssl.org , ftp:

Re: documentation / examples X509 cert code

2002-12-11 Thread Dr. Stephen Henson
On Wed, Dec 11, 2002, Paul Koster wrote: > Are documentation and/or examples available for the X509 certificate > handling library code in openssl? > > On the openssl website the X509 documentation is lacking, just as it is in > the distribution. The header files and source f

documentation / examples X509 cert code

2002-12-11 Thread Paul Koster
Are documentation and/or examples available for the X509 certificate handling library code in openssl? On the openssl website the X509 documentation is lacking, just as it is in the distribution. The header files and source files are hardly documented. What's the reference to create programs

Re: Examples of RSA/DSA signing of data

2002-11-13 Thread Frank
; Look in the demos directory of the Openssl distribution. > > > > > > - Original Message - > > > From: "Frank" <[EMAIL PROTECTED]> > > > To: "Openssl user grp" <[EMAIL PROTECTED]> > > > Sent: Monday, November 11,

Re: Examples of RSA/DSA signing of data

2002-11-13 Thread Nils Larsch
ECTED]> > > To: "Openssl user grp" <[EMAIL PROTECTED]> > > Sent: Monday, November 11, 2002 7:51 AM > > Subject: Examples of RSA/DSA signing of data > > > > > I was wondering if there where any examples of using RSA and DSA to > > > sign dat

Re: Examples of RSA/DSA signing of data

2002-11-11 Thread marcus.carey
Look in the demos directory of the Openssl distribution. - Original Message - From: "Frank" <[EMAIL PROTECTED]> To: "Openssl user grp" <[EMAIL PROTECTED]> Sent: Monday, November 11, 2002 7:51 AM Subject: Examples of RSA/DSA signing of data > I was wo

Examples of RSA/DSA signing of data

2002-11-11 Thread Frank
I was wondering if there where any examples of using RSA and DSA to sign data/verify? The man pages are not exactly straight forward on what you have to do. I just want to sign some data. I can assume the certs are in a file for everyone. I know it's not as easy as calling RSA_sign, RSA_v

Work on openSSL examples!

2002-09-02 Thread Nas Rad
I openSSL examples of Client & server written in C. If i want to see these scripts in action then what are all the steps i must do? I run windows OS with a self made webserver which runs CGI. DO i have to install OpenSSL on my Windows? How and where can i embed the C into my Webserver pg

Examples of using Java Crypto Extention...

2002-05-29 Thread Leendert Meyer
Hi there, Could anyone point me to simple examples of how to use the JCE ? Regards, Leendert __ OpenSSL Project http://www.openssl.org User Support Mailing List[EMAIL

Re: Re: Examples

2002-05-24 Thread shalen chhabra
yes! On Fri, 24 May 2002 Eric Rescorla wrote : >"shalen chhabra" <[EMAIL PROTECTED]> writes: > > > I am writing a tutorial on > > How to write applications using OPENSSL for the OPENSSL. > > People it would be great if you can give me some examples &

Re: Examples

2002-05-24 Thread Eric Rescorla
"shalen chhabra" <[EMAIL PROTECTED]> writes: > I am writing a tutorial on > How to write applications using OPENSSL for the OPENSSL. > People it would be great if you can give me some examples > Thanking YOu You mean aside from the examples in this tutorial?

Examples

2002-05-24 Thread shalen chhabra
I am writing a tutorial on How to write applications using OPENSSL for the OPENSSL. People it would be great if you can give me some examples Thanking YOu Shalen _ Click below to visit monsterindia.com and review jobs in India or Abroad

RE: code examples

2002-05-22 Thread Leendert Meyer
On Wed, 2002-05-22 at 07:59, Sharon Hezy wrote: On this topic. Is there a good C++ wrapper toolkit for SSL out there. Good docs and examples will also help a lot. Thanks. Lenny. __ OpenSSL Project

RE: code examples

2002-05-21 Thread Sharon Hezy
rnal commands). Almost all the docs can be found in "docs" dir. (If you're using Win - you will see them in some strange format). Good luck, Sharon. -Original Message- From: Amir Ghavam [mailto:[EMAIL PROTECTED]] Sent: Tue, May 21, 2002 7:06 PM To: [EMAIL PROTECTED] Subject

Re: code examples

2002-05-21 Thread Mark W. Webb
Eric Rescorla has a great book on TLS and SSL. I bought it a few weeks ago and you will find that there is no better source out there. On Tue, 2002-05-21 at 13:05, Amir Ghavam wrote: > Hi there, > I'm new to openssl. Could anybody tell me where can I find some code > examples

code examples

2002-05-21 Thread Amir Ghavam
Hi there, I'm new to openssl. Could anybody tell me where can I find some code examples please? Many Thanks Amir __ OpenSSL Project http://www.openssl.org User Support Mailing

Re: PKCS 12 examples

2002-04-30 Thread cch
uot; -out output.p12 Then the output.pem will contain the pkcs12 file. Best Regards, Loren - Original Message - From: "Mads Rasmussen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 30, 2002 5:01 AM Subject: PKCS 12 examples > Hi there, > > Co

using Openssl in my examples

2002-01-21 Thread Pavol Cerven
Hello, I wrote book about software protections. I am writing second edition of my book. I will added some examples with strong encryption. I ripped from openssl function for generating RSA keys. I compiled it to DLL. Ofcourse I didn't removed Copyright and I will add text to About box

client code examples that use client cert?

2001-03-22 Thread akravchenko
403.7 I wrote my code on solaris with openssl 0.9.6. I connect to IIS server on NT. I got client certificate from equifax and I was able to verify that it's valid by posting from netscape and using s_client utility. So the problem is somewhere in my code. So that's why I'd like

Re: SSL program examples

2001-02-22 Thread jkunz
On 22 Feb, jackson e. wrote: > Could anyone point me to some basic SSL coding examples? ftp://forelle32.wohnheim.uni-kl.de/pub/apps/echohttpd-1.0.tar.gz apps/s_client.c apps/s_server.c demos/ in the openssl distro. The applications listet on http://www.openssl.org/related/apps.h

RE: SSL program examples

2001-02-22 Thread Shaughnessy, Ian
There is actually a book, SSL and TLS by Eric Rescorla, that has some good examples in both C and java (using PureTLS). The source from the book is also available online, at www.rtfm.com/sslbook. Goodluck ;-) -Ian -Original Message- From: jackson e. To: [EMAIL PROTECTED] Sent: 2/22

RE: SSL program examples

2001-02-22 Thread Arjan J. Molenaar
> > Could anyone point me to some basic SSL coding > examples? I am just looking for trivial server / > client coding. I want to use SSL in a project we are > developing in school. I'm using demos/ssl/* in the OpenSSL source package as a starting point... Regards, Arja

SSL program examples

2001-02-22 Thread jackson e.
Could anyone point me to some basic SSL coding examples? I am just looking for trivial server / client coding. I want to use SSL in a project we are developing in school. thanks jon __ Do You Yahoo!? Yahoo! Auctions - Buy the things you want at

Re: SSL examples

2001-02-09 Thread Lutz Jaenicke
On Fri, Feb 09, 2001 at 04:16:20PM +, Tat Sing Kong wrote: > One of the things I don't understand is what is the difference between > SSL_use_certificate() and SSL_CTX_use_certificate(), the examples you > mention don't use this, but a skeleton server in demos\ssl do.

Re: SSL examples

2001-02-09 Thread jkunz
On 9 Feb, Tat Sing Kong wrote: > Has anyone got an example of how a client and server should use SSL > calls? ftp://forelle32.wohnheim.uni-kl.de/pub/apps/echohttpd-1.0.tar.gz is a simple demo HTTP server that can do client cert based auth and crl checks (crl code stolen from mod_ssl). Have a lo

Re: SSL examples

2001-02-09 Thread Nelson Henry Eric
Content of the type listed below was automatically deleted from mail received from you. Usually this type of content is extraneous, non- textual material, oftentimes appended unbeknown to the sender. If this is the case, you may ignore this reply. However, if you believe the deleted portion was

Re: SSL examples

2001-02-09 Thread Tat Sing Kong
rence between SSL_use_certificate() and SSL_CTX_use_certificate(), the examples you mention don't use this, but a skeleton server in demos\ssl do. That's where the contradictions come in. Going into this blind, I don't really know where to start. I am familiar with the crypto part

Re: How to use OpenSSL -- _simple_ code examples

2000-09-27 Thread Dr S N Henson
secret wrote: > > Are there any simple code examples for using OpenSSL? There is a > examples directory, but I can't get those to compile, and the readme > says to not expect them to compile. > > The documentation seems very confusing to me, a sample client & serve

How to use OpenSSL -- _simple_ code examples

2000-09-27 Thread secret
Are there any simple code examples for using OpenSSL? There is a examples directory, but I can't get those to compile, and the readme says to not expect them to compile. The documentation seems very confusing to me, a sample client & server that establish a simple SSL connection would

RE: Problem linking the examples in WinNT4

2000-08-16 Thread Glenn Carr
Sacristana Martinez > [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 11, 2000 6:11 AM > To: [EMAIL PROTECTED] > Subject: Problem linking the examples in WinNT4 > > > Hello!! > > I tried to compile the examples included in OpenSSL and after > setting the > libr

Re: Problem linking the examples in WinNT4

2000-08-11 Thread Oscar Jacobsson
Sergio Gallego Sacristana Martinez wrote: > MSVCRT.lib(MSVCRT.dll) : error LNK2005: [function] already defined in > LIBCD.lib(sprintf.obj) > > Could somebody help me?? Here's my two cents worth, anyway. The linker is complaining because it's finding two copies of the C runtime library. MSVCRT.

Problem linking the examples in WinNT4

2000-08-11 Thread Sergio Gallego Sacristana Martinez
Hello!! I tried to compile the examples included in OpenSSL and after setting the libraries Libeay32.dll Ssleay32.dll and RSAglue.lib on the link settings (input) of MS Visual C++ 6.0 I get this error: MSVCRT.lib(MSVCRT.dll) : error LNK2005: _sprintf already defined in LIBCD.lib(sprintf.obj

NT client and server examples

2000-08-09 Thread James Sears
I've successfully build the out32dll files found in openssl-0.9.5a, and generated usable certificates for Microsoft's web server, IIS. However, using VisualC 6, Service Pack 4, I am unable to build the cli.cpp and serv.cpp, nor, s_cerver.c and s_client.c examples. At the very least s

examples on open SSL - urgent

2000-04-25 Thread meenakshi arora
hello i am very new to open SSL. Could anyone tell me some sites from where i could get the samples for how to use Open SSL for my WinNT application. thanx meenakshi __ Do You Yahoo!? Send online invitations with Yahoo! Invites. http://invites.yaho

Examples of Client Side Cache

2000-02-23 Thread Steve Shah
Hello, Can anyone point me to an example of setting up and using a client side cache? Thanks, -Steve -- __ Steve Shah ([EMAIL PROTECTED]) | SysAdmin/Coder/Gabbernaut/DJ/Writer/Minister http://www.planetoid.org

Non-blocking IO examples?

1999-03-27 Thread Benjamin Grosman
Hi all, Does anyone have any examples of Non-blocking IO using OpenSSL? A simple client and a simple server perhaps? Thanks, Ben --- perl -wle '$_ = 1; (1 x $_) !~ /^(11+)\1+$/ && print while $_++'