Re: Newbie Q: using RSA for copy protection?

2001-04-24 Thread Dave Strout
Ok, that sort-of make sense, I think Still, does there exist a good guide or example for creating & verifying a certificate using the libcrypto out of the OpenSSL package? I think I'm getting tripped up in basics like data formats, etc that an example or tutorial would probably clear up.

Re: Newbie Q: using RSA for copy protection?

2001-04-24 Thread Rich Salz
> I've been tasked with locking a piece of linux software to a given MAC > address, possibly with an expiration time. How about making the license be a cert, where the MAC address appears as the subject DN and the expiration time appears in the validity period? /r$ ___

Re: Newbie

2001-04-17 Thread Greg Stark
AIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 17, 2001 4:02 PM Subject: RE: Newbie > > Hi; > > 1. I guess you need install both if you want to compile and use SSH, SSH > is build > on SSL. > > 2. SSL provides authentication and encryption service on t

Re: Newbie

2001-04-17 Thread Richard Levitte - VMS Whacker
From: "Pat Nolan" <[EMAIL PROTECTED]> pnolan> I am trying to begin implementing encryption on my network. pnolan> I have never worked with SSL or SSH before. As I was pnolan> installing OpenSSH I read that I needed to have SSL installed pnolan> first. I then went to the OpenSSH site and downloa

Re: Newbie question about ssl password

2001-02-14 Thread ApacheSSL
Hi, mads > > Now I want to run ssl aware apache as service, but I failed, then how > > can I let modssl read password from another way, for example, read from > > a file? Thanks in advance. > > > See http://www.modssl.org/docs/2.8/ssl_reference.html#ToC2 > > vh > > Mads Toftum I am working

Re: Newbie question about ssl password

2001-02-13 Thread Mads Toftum
On Tue, Feb 13, 2001 at 10:51:17AM +0800, ApacheSSL wrote: > Hi, > > Now I want to run ssl aware apache as service, but I failed, then how > can I let modssl read password from another way, for example, read from > a file? Thanks in advance. > See http://www.modssl.org/docs/2.8/ssl_reference.ht

Re: newbie what is openssl used for?

2001-01-22 Thread Michael H. Warfield
On Mon, Jan 22, 2001 at 04:19:59PM +0530, Shridhar Bhat wrote: > Ron wrote: > > > > Hello, > > > > I would like to know what is the advantage of using openssl. > > > > Do openssl users still have to pay for services like verisign. > > > > I have looked on the opensll site but my English is not

RE: newbie what is openssl used for?

2001-01-22 Thread Dale Peakall
OpenSSL is a library used for developing applications that can communicate using the SSL/TLS link-layer encryption facilities. Link-layer encryption can be used to carry any other protocol. This is demonstrated by the 'stunnel' application that can be used to transparently add SSL encryption to

Re: newbie what is openssl used for?

2001-01-22 Thread Shridhar Bhat
Ron wrote: > > Hello, > > I would like to know what is the advantage of using openssl. > > Do openssl users still have to pay for services like verisign. > > I have looked on the opensll site but my English is not that good, > if someone can give me a simple explanation it would be very much >

Re: newbie what is openssl used for?

2001-01-22 Thread Stephane Bortzmeyer
On Sunday 21 January 2001, at 23 h 48, the keyboard of "Ron" <[EMAIL PROTECTED]> wrote: > Do openssl users still have to pay for services like verisign. Of course :-) Verisign is not a charity, not even a political party fighting for free software. We self-sign our certificate for this reason

Re: newbie question about cli/serv with SSL

2001-01-11 Thread Alexey Prohorenko
On Thu, Jan 11, 2001 at 01:45:11PM +0100, Lutz Jaenicke wrote: > > green@pacific:~/SSL$ make > > gcc -I/usr/local/ssl/include -o cli cli.cpp -L/usr/local/ssl/lib -lcrypto -lssl > You did not use my sequence. Libraries are searched in the sequence given. > It is thus important to keep -lssl -lcryp

Re: newbie question about cli/serv with SSL

2001-01-11 Thread Lutz Jaenicke
On Thu, Jan 11, 2001 at 02:38:26PM +0200, Alexey Prohorenko wrote: > On Thu, Jan 11, 2001 at 10:08:24AM +0100, Lutz Jaenicke wrote: > > On Thu, Jan 11, 2001 at 09:13:12AM +0200, Alexey Prohorenko wrote: > > > green@pacific:~/SSL$ make > > > g++ -I/usr/local/ssl/include -o cli cli.cpp -L/usr/local/

Re: newbie question about cli/serv with SSL

2001-01-11 Thread Alexey Prohorenko
On Thu, Jan 11, 2001 at 10:08:24AM +0100, Lutz Jaenicke wrote: > On Thu, Jan 11, 2001 at 09:13:12AM +0200, Alexey Prohorenko wrote: > > green@pacific:~/SSL$ make > > g++ -I/usr/local/ssl/include -o cli cli.cpp -L/usr/local/ssl/lib/libssl.a >/usr/local/ssl/lib/libcrypto.a > > Read the manual of y

Re: Newbie Sample Codes

2000-11-18 Thread Tim Newsham
> Hello! > > Where can I find sample codes using OpenSSL. I have already installed > OpenSSL in my FreeBSD box. I have read the documentation, but can't find > some sample codes implementing a fully running server implementing ssl, and > a fully running client implementing ssl. I was quite disap

Re: Newbie Sample Codes

2000-11-18 Thread jkunz
On 18 Nov, Mark John Buenconsejo wrote: > Where can I find sample codes using OpenSSL. 1. Have a look at the OpenSSL source: apps/s_client.c and apps/s_server.c may give you some hints. 2. I had the same problem and the result is echohttpd. It is a primitive old stype forking HTTP/HTTPS server h

RE: Newbie: RANDFILE problem

2000-09-26 Thread Rob Bell
--Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Rob BellSent: Monday, September 25, 2000 10:59 AMTo: [EMAIL PROTECTED]Subject: RE: Newbie: RANDFILE problem I followed the tutorial at devshed to do mine: http://www.devshed.com/Server_Side/PHP/Soothing

Re: Newbie question: Compiling OpenSSL under VC++ 6.0

2000-09-25 Thread zhu qun-ying
In your VC installation, you should be able to found a batch file under C:\progra~1\micros~2\vc98\bin, it is named "vcvars32.bat", just run the batch file under your DOS prompt, it will setup all the environment for you. -- (~._.~) Öì Ⱥ Ó¢ (Qun-Ying) (65) 874-6743 ( O ) TrustCopy

Re: Newbie question: Compiling OpenSSL under VC++ 6.0

2000-09-25 Thread ApacheSSL
When you install vc, you forget to run VCVARS32.BAT, so nmake can not find some enviroment variable like INCLUDE, if you really a newbie about VC, I suggest you install VC again, and let vc run the batch file, else, you can run it every time you start dos prompt or set them to system variable man

RE: Newbie: RANDFILE problem

2000-09-25 Thread "Roy, Sébastien"
PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Rob BellSent: 22 septembre, 2000 18:19To: [EMAIL PROTECTED]Subject: RE: Newbie: RANDFILE problem Did you use "apachectl startssl" to start the server?   Robman -Original Message-From: [EMAIL PROTECTED]

Re: newbie q

2000-05-20 Thread Dr Stephen Henson
Poppy Brodsky wrote: > > I'm running: > Linux release 4.0 (Fargo) > Kernel 2.0.34 on a mips > > and the install process went fairly smooth, > but when I try to test the server with: > /usr/sbin/openssl s_server > > I get this output: > Using default temp DH parameters > unable to get certificat

Re: Newbie - Need to mimic how a browser handles https requests?

2000-03-14 Thread Andy Moskoff
On Tue, 14 Mar 2000, Catherine Grogan wrote: > Can anyone help with this ? > > If someone has a very simple example of how to do basic authentication > then that would be great as I could use it as a starting point. > > Thanks in advance, > > Catherine. > > I've attached a client an

RE: Newbie question: how to enable 128bit encryption?

2000-01-19 Thread Hallam, John
Hi Wangster, Are you sure the web-server is your problem ? Are you connecting with your browser and seeing that you have only 40 bit encryption ? If the latter is the case then it's because your Netscape Browser or IE are export grade (which is the case if you are resident outside the U.S. I thin

Re: Newbie questions

1999-11-06 Thread Serban Udrea
Hello, Many thanks to all who answered my questions. I'm on the way to install ssh. Best regards, Serban On Mon, Nov 01, 1999 at 12:01:59PM +, Pete Chown wrote: > On Fri, Oct 29, 1999 at 02:33:41PM -0100, Serban Udrea wrote: > > > This mail is mainly focusing on SSLtelnet which I intend

Re: Newbie questions

1999-10-29 Thread Michael Slass
SSH is nice, but I would also like to build SSL-telnet, and ran into the same problem. Is anyone maintaining SSL telnet? Has anyone gotten an SSL-enabled telnet to build against a recent version of OpenSSL? -Mike Slass WRQ, Inc. "Dr. Greg Quinn" wrote: > > What about SSH instead? > > On Fri

Re: Newbie question

1999-10-24 Thread Gilles MASSEN
Hello. If you want a decent documentation of how to set up a CA using OpenSSL you should have a look at http://www.cert.dfn.de/dfnpca/certify/ssl/handbuch/ It covers only OpenSSL 0.9.2 but there aren't that many changes anyway. BUT if you don't understand any german you're out of luck. Anywa

Re: Newbie question

1999-10-24 Thread Paul Khavkine
Use pkcs12 On Sun, 24 Oct 1999, you wrote: > Hi, > > Am in same status as u. Ifn u get any good replys, > would u mind forwarding to me? SO far I have been > able to create certificates and Certificate CA, but > cannot get a client certificate to import into > Ne

Re: Newbie question

1999-10-24 Thread Joe Schiavone
Hi, Am in same status as u. Ifn u get any good replys, would u mind forwarding to me? SO far I have been able to create certificates and Certificate CA, but cannot get a client certificate to import into Netscape.. > >Hi. > >I am a newbie to the OpenSSL

Re: Newbie needs helps

1999-10-21 Thread Florian Baier
Hi, you have only one daemon-program e.g httpsd which is running (standard) 5times. You can do it by creating virtual-name-based-hosts. Disable SSL globally and enable it in each virtual host you want to use it. You can't run more then one v-host on the same IP&Port, using SSL. Greets, Florian

Re: Newbie Question: Is This Normal???

1999-09-16 Thread BPM Mixmaster Remailer
"Trembicki-Guy, Ed (DBIS-TBS)" <[EMAIL PROTECTED]> wrote: > cc -I.. -I../../include -DNO_RSA -DTHREADS -D_REENTRANT +DA2.0 -DB_ENDIAN -Ae +ESlit >+z -c rsa_eay.c > cpp: "../../include/openssl/rsa.h", line 70: error 4062: RSA is disabled. > *** Error exit code 1 No, that shouldn't happen. The en

Re: newbie seeks pseudo-code for client-authentication

1999-08-05 Thread Steve Lihn
you can check apps/cli.cpp as an example. -Steve Larry LeFever wrote: > I'm trying to secure HTTP POSTs to an extranet (in Java, at this point). > > I've found a few Java-based SSL libraries, one or more of which I expect > I'll try eventually. > > However, I'm still not clear about the general

Re: Newbie question on 3.X browsers and mod_SSL/OpenSSL

1999-08-03 Thread Larry Leszczynski
Hi Tim - > Moving a site from an old Stronghold DEC UNIX Alpha server to a > Solaris 2.6 server running > > Apache/1.3.6 (Unix) ApacheJServ/1.0 PHP/3.0.9 mod_perl/1.19 > mod_ssl/2.3.1 OpenSSL/0.9.3a. > > The site in question uses SSL and everything works just fine for > recent MS and

Re: Newbie certificate question

1999-06-17 Thread Anonymous
> I need to have the certificates up and running by Jul 1st, and I understand > that the CAs take about two weeks to deliver (Am I right?) Thawte (http://www.thawte.com) lets you download a test certificate, but that's probably not what you want. > Is it possible to ask for a certificate

Re: Newbie certificate question

1999-06-17 Thread Anonymous
On Thu, Jun 17, 1999 at 12:12:26PM -0500, Marco A. Zamora Cunningham wrote: > I'm setting up an HP-UX system with SSL (primarily for Apache+mod_ssl, but > I'll also do some PGP-style data signing). > My problem is: I'm working on a tight deadline and I'm having lots of > problems compiling/instal

RE: newbie question

1999-05-26 Thread Dave Clark
vaSeek, Inc. >[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]> >303-604-6334 x104 > > >> -Original Message- >> From: [EMAIL PROTECTED] >> [mailto:[EMAIL PROTECTED]]On Behalf Of Dave Clark >> Sent: Wednesday, May 26, 1999 6:32 AM >> To: [EMAIL PR

Re: newbie question

1999-05-25 Thread Dr Stephen Henson
Greg Pasquariello wrote: > > Hi, > > I'm a newbie to OpenSSL and the SSLeay (though not SSL in general). I've > gotten basic SSL negotiation working, but for the life of me I can't get > this BIO stuff to work. > > I'm running the latest build on NT and the following fails with an Access > Vio

Re: newbie-q: where is PEM format defined?

1999-05-06 Thread Bodo Moeller
> Holger Reif wrote: >> What OpenSSL calls PEM is nothing more than the raw cert or request >> content, base63 encoded and wrapped by -BEGIN XYZ- and >^^ base64 :-) >> -END XYZ- lines. It doesn't use RFC1421-1432! >> >> The name is a bit misleading :-| It is mor

Re: newbie-q: where is PEM format defined?

1999-05-03 Thread Ben Laurie
Holger Reif wrote: > > What OpenSSL calls PEM is nothing more than the raw cert or request > content, base63 encoded and wrapped by -BEGIN XYZ- and ^^ base64 :-) > -END XYZ- lines. It doesn't use RFC1421-1432! > > The name is a bit misleading :-| Cheers, Ben. -

Re: newbie-q: where is PEM format defined?

1999-05-03 Thread Holger Reif
What OpenSSL calls PEM is nothing more than the raw cert or request content, base63 encoded and wrapped by -BEGIN XYZ- and -END XYZ- lines. It doesn't use RFC1421-1432! The name is a bit misleading :-| Wade L. Scholine schrieb: > > I've been messing around with SSL for a while

<    1   2   3