[openssl.org #1187] Openssl - unable to load from /usr/local/ssl/openssl.cnf on win nt

2014-08-11 Thread Rich Salz via RT
Not clear what the issue is; closing as not repeatable with current releases.
--
Rich Salz, OpenSSL dev team; rs...@openssl.org

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org


Re: [openssl.org #1187] Openssl - unable to load from /usr/local/ssl/openssl.cnf on win nt

2006-07-30 Thread [EMAIL PROTECTED] via RT

1st step : 
c:\openssl\binopenssl genrsa -out myprvkey.pem 1024
2nd step :
i think this solves the problem to create the pulic certificate using openssl.
jus type this
c:\openssl\binopenssl req -config c:\openssl\bin\openssl.cnf -new -key 
myprvkey.pem -x509 -days 365 -out mypubcert.pem



--
This message was sent on behalf of [EMAIL PROTECTED] at openSubscriber.com
http://www.opensubscriber.com/message/openssl-dev@openssl.org/1945280.html

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   [EMAIL PROTECTED]


[openssl.org #1187] Openssl - unable to load from /usr/local/ssl/openssl.cnf on win nt

2005-08-16 Thread via RT

I am using the latest - openssl-devel-0.9.7f version of
openssl(win32) for linking with paypal sandbox. My problem is i have to 
generate public certificate and upload to paypal web site. To do that i 
need to follow 2 steps
i)
openssl genrsa -out ..\..\cert\%1-prvkey.pem 1024
This goes smoothly.

openssl req -new -key ..\..\cert\%1-prvkey.pem -x509 -days 365 -
out ..\..\cert\%1-pubcert.pem

When i run this, it gives me error saying unable to load config info 
from /usr/local/ssl/openssl.cnf. Why it is referring to unix path 
eventhough i have compiled for winnt using vc++. Have i missed some 
config. during creation? Why i am getting this error? CAn u please help 
me out. It's urgent!

With regards
Suma
__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   [EMAIL PROTECTED]


Re: [openssl.org #1187] Openssl - unable to load from /usr/local/ssl/openssl.cnf on win nt

2005-08-16 Thread Dr. Stephen Henson
On Tue, Aug 16, 2005,  via RT wrote:

 
 I am using the latest - openssl-devel-0.9.7f version of
 openssl(win32) for linking with paypal sandbox. My problem is i have to 
 generate public certificate and upload to paypal web site. To do that i 
 need to follow 2 steps
 i)
 openssl genrsa -out ..\..\cert\%1-prvkey.pem 1024
 This goes smoothly.
 
 openssl req -new -key ..\..\cert\%1-prvkey.pem -x509 -days 365 -
 out ..\..\cert\%1-pubcert.pem
 
 When i run this, it gives me error saying unable to load config info 
 from /usr/local/ssl/openssl.cnf. Why it is referring to unix path 
 eventhough i have compiled for winnt using vc++. Have i missed some 
 config. during creation? Why i am getting this error? CAn u please help 
 me out. It's urgent!
 

There is no standard place for the config file on Windows. Copy it from the
apps directory to anywhere convenient and either include -config
\path\to\openssl.cnf or set the environment variable OPENSSL_CONF to its full
path.

Oh and don't send user queries to the bug tracker...

Steve.
--
Dr Stephen N. Henson. Email, S/MIME and PGP keys: see homepage
OpenSSL project core developer and freelance consultant.
Funding needed! Details on homepage.
Homepage: http://www.drh-consultancy.demon.co.uk
__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   [EMAIL PROTECTED]