Re: [PHP] SSL encryption type in PHP?

2001-08-08 Thread Dr. Evil

 You can tell it using the variables from the server. Using Apache you
 can access the variables specs at:
 
 http://www.apache-ssl.org/docs.html
 
 With Apache SSL is SSL_CIPHER returns the variable about SSL/TLS
 ciphersuite.

Do you know how I would access that variable from PHP?  Is that
possible?  I know how to configure apache to reject conections based
on encryption settings, but instead of rejecting them, I would like to
accept them but warn the user: You should upgrade your browser.  Is
this possible?

Thanks

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] SSL encryption type in PHP?

2001-08-08 Thread Sean C. McCarthy

Hi,

Use getenv() since it is a CGI variable. Look at the manual.

Sean C. McCarthy
SCI, S.L. (www.sci-spain.com)


Dr. Evil wrote:
 
  You can tell it using the variables from the server. Using Apache you
  can access the variables specs at:
 
  http://www.apache-ssl.org/docs.html
 
  With Apache SSL is SSL_CIPHER returns the variable about SSL/TLS
  ciphersuite.
 
 Do you know how I would access that variable from PHP?  Is that
 possible?  I know how to configure apache to reject conections based
 on encryption settings, but instead of rejecting them, I would like to
 accept them but warn the user: You should upgrade your browser.  Is
 this possible?
 
 Thanks
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] SSL encryption type in PHP?

2001-08-07 Thread Sean C. McCarthy

Hi,

You can tell it using the variables from the server. Using Apache you
can access the variables specs at:

http://www.apache-ssl.org/docs.html

With Apache SSL is SSL_CIPHER returns the variable about SSL/TLS
ciphersuite.

Sean C. McCarthy
SCI, SL (www.sci-spain.com)


Dr. Evil wrote:
 
 Is there a function in PHP which can tell me the encryption strength
 being used by the browser?  I want to be able to put a little message
 on the page saying, You are using strong encryption or Warning: you
 should upgrade your browser to one which supports 128bit crypto.
 
 Thanks
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] SSL encryption type in PHP?

2001-08-06 Thread Dr. Evil


Is there a function in PHP which can tell me the encryption strength
being used by the browser?  I want to be able to put a little message
on the page saying, You are using strong encryption or Warning: you
should upgrade your browser to one which supports 128bit crypto.

Thanks

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]