Can I tell if a browser is 128 bit with CF

2001-03-22 Thread James Milks
Hi all, Is it possible to determine if a clients browser is 128 or 40 bit with CF? Thanks James Milks Noncubicle Corporation www.noncubicle.com [EMAIL PROTECTED] (613) 560-9855 ~~ Structure your ColdFusion code with Fusebox. Get the official

Re: Can I tell if a browser is 128 bit with CF

2001-03-22 Thread Dave Hannum
CF is server side. Browser detection must be done client side with JavaScript. I know there are scripts to detect browser screen height, width, pixels and color depth, but I've never seen one detect encryption. Not saying it does not exist, just saying if it does, it would not be a CF issue.

RE: Can I tell if a browser is 128 bit with CF

2001-03-22 Thread Ian Tait
Would the cgi variable HTTPS_KEYSIZE tell you? Ian -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent: 22 March 2001 12:50 To: CF-Talk Subject: Re: Can I tell if a browser is 128 bit with CF CF is server side. Browser detection must be done client side with

Re: Can I tell if a browser is 128 bit with CF

2001-03-22 Thread Mark Woods
ColdFusion won't do this for you, but you could make use of the Browserhawk COM component within your CFML. www.browserhawk.com At 12:30 PM 3/22/2001, you wrote: Hi all, Is it possible to determine if a clients browser is 128 or 40 bit with CF? Thanks James Milks Noncubicle Corporation

RE: Can I tell if a browser is 128 bit with CF

2001-03-22 Thread Steve Bernard
Actually, it is exposed as a CGI variable, which is available to the server. You don't need Browser Hawk, JavaScript, or a crystal ball ... just #CGI.HTTPS_KEYSIZE# Steve -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 22, 2001 7:50 AM To: CF-Talk

RE: Can I tell if a browser is 128 bit with CF

2001-03-22 Thread Steve Martin
cgi.HTTPS_KEYSIZE= [40/128] Steve -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent: 22 March 2001 12:50 To: CF-Talk Subject: Re: Can I tell if a browser is 128 bit with CF CF is server side. Browser detection must be done client side with JavaScript. I know

Re: Can I tell if a browser is 128 bit with CF

2001-03-22 Thread Billy Cravens
It will tell the encryption bit size.. 40 or 128. 40 bit is "standard", 128 is "heavy duty". -- Billy Cravens HR Web Development, Sabre [EMAIL PROTECTED] Ian Tait wrote: Would the cgi variable HTTPS_KEYSIZE tell you? Ian -Original Message- From: Dave Hannum [mailto:[EMAIL