
fashimpaur
User
Sep 7, 2000, 5:02 AM
Post #2 of 2
(590 views)
|
|
Re: Browser Encryption Level Detection?
[In reply to]
|
Can't Post
|
|
Okay, I will post the answer I found to my problem here. For those that in the future may be doing something with Digital ID's and SSL: SSL produces several CGI Environment variables that are not listed anywhere in my library of perl/cgi books. Among these are the two that I needed. First, is $ENV{HTTPS_KEYSIZE}. This is the maximum cryptographic keysize for the web server you are sending the data to from a web page. Second, is $ENV{HTTPS_SECRETKEYSIZE}. This is the maximum cryptographic keysize for the client browser attempting to communicate with the server. A simple comparison of the 'SECRETKEYSIZE' to the minimum level of encryption you want your application to use, would be enough to create some notification to the web client that their browser did/didn't have a high enough encryption level. Hope that helps others in the future. Dennis
|