Re: memory leak in multithreaded c++ program

2004-05-03 Thread Igal Ore
Hawk wrote: Hi I wrote a multithreaded program using openssl But with every connection it grows up about 8kb I think I freed all SSL* and SSL_CTX* I used I used this functions to make my program threadsafe: Perhaps anyone can give me a hint if there is an error? With best regards Stephan void CRYPT

Re: .cer certificate file

2004-05-03 Thread Raven
> That wont help you much because the request to "use users.cer" is pretty > meaningless. If they want you to use it as a client certificate then you can't > because you don't have the private key. If it is a CA certificate then you can > add it to your trusted root CAs. Umm... what kind of func is

Re: Query Verisign certificates

2004-05-03 Thread Joseph Bruni
Try using the -enddate option to get the expiration date. On May 3, 2004, at 12:50 PM, Reese Williams wrote: Brand new to openssl. Anyone use openssl x509 -text -n //certificate-name.pem with a Verisign certificate to get expiration date? I have quite a few Apache and IIS 5.0 web servers and I am

Small Footprint OpenSSL

2004-05-03 Thread J Harper
Requests for an embedded OpenSSL implementation are periodically made on this list. Our team worked through many of these issues trying to make a small OpenSSL library. Turning off the optional defines will reduce the library by a couple hundred KB. Going in by hand to remove code becomes very d

Query Verisign certificates

2004-05-03 Thread Reese Williams
Brand new to openssl. Anyone use openssl x509 -text -n //certificate-name.pem with a Verisign certificate to get expiration date? I have quite a few Apache and IIS 5.0 web servers and I am looking to automate in a script notifications concerning certificate expirations. Thanks.  

Re: How BN_bin2bn works

2004-05-03 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Mon, 03 May 2004 18:15:48 +, Carlos Cabañero <[EMAIL PROTECTED]> said: charlychango> I'm giving a look to the code of OpenSSL as I'm very charlychango> interested in RSA encryptation / decryp. specially for a charlychango> subject called Discrete Math. My pro

How BN_bin2bn works

2004-05-03 Thread Carlos Cabañero
Hi! I'm giving a look to the code of OpenSSL as I'm very interested in RSA encryptation / decryp. specially for a subject called Discrete Math. My problem is that I have to work on an algorithm by myself and, of course, I'm trying to implement and understand some things that OSSL uses like the

RENEGOTIATING error in my app.

2004-05-03 Thread Rodrigo Madera
Dear listmembers: I got an OpenSSL test program like this: -BEGIN CODE- std::string name; SendTextString("Whats your name? "); // this function encapsulates bio_puts GetTextString(name); // the same for gets std::string Response = "Nice to meet you " + name; SendTextSt

Re: lavin (Redirection the port)

2004-05-03 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Mon, 3 May 2004 17:12:39 +0200, Pawel Hadam <[EMAIL PROTECTED]> said: Pawel.Hadam> RLVW> The redirection from port 80 to port 443 needs to Pawel.Hadam> RLVW> be controled by the http server software. Pawel.Hadam> Pawel.Hadam> Is not the web browser that contacts

[no subject]

2004-05-03 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Mon, 03 May 2004 20:36:02 +0530, "lavin p" <[EMAIL PROTECTED]> said: lavin_p81> thx for all your help.And i think i'm not in the wrong list.. Considering I'm assisting listowner, I feel safe in telling you that you are indeed on the wrong list. It just happens

Re[2]: lavin (Redirection the port)

2004-05-03 Thread Pawel Hadam
RLVW> The redirection from port 80 to port 443 needs to be controled by the RLVW> http server software. Is not the web browser that contacts port 80 for HTTP requests and port 443 for HTTPS requests ??? (and 119 for NNTP requests, and 21 for FTP requests, and etc...) Surely, it not this group top

Re: your mail

2004-05-03 Thread martin paljak
Hello! AFAIK this list is about openssl. Openssl is a library for SSL operations, and some utilities. What you are interested in, is more related to mod_ssl, and apache in general. cheers, m. p.s. there's a good book from wrox, on how to write apache modules. On Mon, May 03, 2004 at 08:36:02

[no subject]

2004-05-03 Thread lavin p
hi everybody, thx for all your help.And i think i'm not in the wrong list ..if anyone can tell me how mod_ssl is being integrated with apache this would be a help for me. if someone can give me an idea about (in a programmers perspective) how we are using mod_ssl with apache ... this will help

Re: lavin (Redirection the port)

2004-05-03 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Mon, 03 May 2004 14:45:10 +, Carlos Cabañero <[EMAIL PROTECTED]> said: charlychango> I've asked a friend. If you're using Linux (and as you charlychango> said you were using Apache I think so) you have to do charlychango> the following: charlychango> charlyc

RE: lavin (Redirection the port)

2004-05-03 Thread Carlos Cabañero
I've asked a friend. If you're using Linux (and as you said you were using Apache I think so) you have to do the following: iptables -t nat -A PREROUTING -i eth1 -p tcp -d 10.1.7.1 --dport 80 -j DNAT --to 10.1.7.1:443 Replace eth1 with the network interface where apache's serving and 10.1.7.1

[no subject]

2004-05-03 Thread Richard Levitte - VMS Whacker
You're asking on the wrong list. I will answer with what I can find on the net, and if that isn't enough, you'll have to get in touch with the Apache group (which we are NOT). In message <[EMAIL PROTECTED]> on Mon, 03 May 2004 17:15:14 +0530, "lavin p" <[EMAIL PROTECTED]> said: lavin_p81> i nee

[no subject]

2004-05-03 Thread lavin p
hello everybody, im lavin.i'm working in nokia india pvt ltd.i need your help ... coz i'm new to this project NSAS . i need to know ,when an http request to port 80 comes howz it redirecting to https ie 443 port??? n after this i need to know,if i'm adding a new module to apache server ,i've wri