Re: How to create certificates & chains in DER format

2002-11-14 Thread Richard Levitte - VMS Whacker
In message <[EMAIL PROTECTED]> on Fri, 15 Nov 2002 11:55:19 +0530, [EMAIL PROTECTED] said: ncreddy> How to create certificates & chains in DER format...? You can't, as far as I know. Try wrapping them in PKCS#7... -- Richard Levitte \ Spannvägen 38, II \ [EMAIL PROTECTED] Redakteur@S

Get the public key from a cert

2002-11-14 Thread MALA_SOMBRA
Hi, I'm trying to get the public key using (from opensslman.odf): openssl x509 −in test/testx509.pem −pubout −noout >pubkey.pem But it doesn't work. anyone knows how can I do it? Thanks Juanan __ OpenSSL Project

RE: IE request generation just stopped working...

2002-11-14 Thread Shalkebaev,AntonMSCAG
Hi I think you can specify two objects on one page and first try to use new component if it failed you will use the old one.(This is not hard to implement). If your users take about their security they should upgrade the vulnurable IE. If you need help please post your page. Anton -Original

Re: How to create certificates & chains in DER format

2002-11-14 Thread akkasam
HI Here is some information which can be useful. How can I convert a certificate from PEM to DER format? The default certificate format for SSLeay/OpenSSL is PEM, which actually is Base64 encoded DER with header and footer lines. For some applications (e.g. Microsoft Internet Explorer) you need

How to create certificates & chains in DER format

2002-11-14 Thread ncreddy
Hi, How to create certificates & chains in DER format...? TIA Channa __ OpenSSL Project http://www.openssl.org User Support Mailing List[EMAIL PROTECTED] Automated Lis

Hellp! mod_perl worked fine then added modssl and now apache won't start

2002-11-14 Thread Mitchel, Jennifer (Jem)
Hi all, I am still new to all of this. I had Apache 1.3.22 with mod_perl included and the Authenitcation hook enabled. Everything was fine. Then I imstalled my OpenSSL and generated my key, got my server certificate from my csr etc fine. The certificate has been verified. I then w

Apache + mod_ssl (OpenSSL Error)

2002-11-14 Thread Manoj Kithany
Hi Experts! I want to INSTALL and CONFIGURE my APACHE 1.3.27 for SSL. I am using IBM AIX box. So, I got mod_ssl from the IBM site and installed it in following way(after READing INSTALL file for 2 hrs;-( #pwd /opt/freewar

Re: PRNG Error - /dev/random not avail

2002-11-14 Thread Lutz Jaenicke
On Thu, Nov 14, 2002 at 08:01:49PM +, Manoj Kithany wrote: > I am using IBM AIX System and DO NOT have /dev/random device. > How do I set random pool to /dev/random? Also, on my IBM AIX box I have > installed EGD /var/run/egd-pool > > Any related info? Hmm. The FAQ!? For the OpenSSL command

Re: PKCS12 and Private Key

2002-11-14 Thread Chris Jarshant
Since PKCS12 is simply a container for keys and/or certs, you can certainly craft a PKCS12 file with just a single key or just a single cert in it. Unfortunately the current openssl pkcs12 command enforces a peculiar limitation that each PKCS12 file must have at least one cert and one private key

PRNG Error - /dev/random not avail

2002-11-14 Thread Manoj Kithany
I am using IBM AIX System and DO NOT have /dev/random device. How do I set random pool to /dev/random? Also, on my IBM AIX box I have installed EGD /var/run/egd-pool Any related info? Thanks! _ The new MSN 8: smart spam pr

Apache + mod_ssl - Install/config

2002-11-14 Thread Manoj Kithany
Hi Experts! I want to INSTALL and CONFIGURE my APACHE 1.3.27 for SSL. SO, I got mod_ssl from the site and installed it using #pwd /opt/freeware/src/packages/SOURCES/mod_ssl-2.8.11-1.3.27

Re: help needed! error trying to verify a certificate

2002-11-14 Thread Charles B Cranston
"Mitchel, Jennifer (Jem)" wrote: > I have generated my key pair. I have generated my certificate > signing request sent it to my CA and gotten my certificate back... > I named it server.crt > I am trying to use ssl to verify the certificate. I have the key pair, > csr & server.crt all in /bin so

Re: PKCS12 and Private Key

2002-11-14 Thread Michael Krustev
No. It's not possible!!! Sorry, PKCS12 structure holds public/private key pair... --- Oliver Wulff <[EMAIL PROTECTED]> wrote: > Hi > > Is it possible to store only the private key in a > p12 file and hold the > certificate and ca certificates in another p12 file? > If yes, how can I do that? >

Re: Do I need ssleay32.lib and libeay32.lib

2002-11-14 Thread Michael Krustev
You don't need libeay32.dll and libssl32.dll when you statically link OpenSSL in your code /libeay32.lib must be approximatelly 2 Mb,ssleay32.lib - 600 Kb/. If you link them dynamically /libeay32.lib - 360 Kb, ssleay32.lib - 64 Kb approximatelly/ - you will need the dlls. --- Ron <[EMAIL PROTECTE

help me

2002-11-14 Thread don.quixote
hi all: I builder it with borland C++ 5.5 and use no-asm But when i make -f ms\bcb.mak . I get some error : Error E2293 .\crypto\bn\bn_asm.c 726: ) expected in function bn_sqr_comba8 Error E2293 .\crypto\bn\bn_asm.c 730: ) expected in function bn_sqr_comba8 Error E2293 .\crypto\bn\bn_as

RE: help needed! error trying to verify a certificate

2002-11-14 Thread Mitchel, Jennifer (Jem)
Yes that was it. I was literally mailed ascii text that had to be saved to the server.crt file so I thought it was in PEM format, but apparently it's not. I successfully verified my certificate which was all I needed to do. Thanks! -Original Message- From: Richard Levitte - VMS Whac