DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24031>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24031
Passphrase protected private key in SSLProxyMachineCertificateFile causes SEGV
------- Additional Comments From apache@moresecurity.org 2003-11-14 10:03 -------
What i found in the code is all x509 clients certificates are read with:
SSL_X509_INFO_load_file function,
which is modssl_PEM_X509_INFO_read_bio
which is:
crypto/pem/pem.h:STACK_OF(X509_INFO) * PEM_X509_INFO_read_bio(BIO *bp,
STACK_OF(X509_INFO) *sk, pem_password_cb *cb, void *u);
Seems ssl module does not use pem_password callback to eventually take the password:
modssl_PEM_X509_INFO_read_bio(in, sk, NULL, NULL);
i will continue in this way and find how i could do to ask the pem password.
Even if the private key need a passphrase and it's maybe different than the pem
password.
Tell me if you see i am directly going into a wall =)
---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org
|