RE: Encryption problem when passed in URL?

2000-12-06 Thread Jared Clinton
Wednesday, 6 December 2000 11:08 > To: CF-Talk > Subject: RE: Encryption problem when passed in URL? > > > why not URLEncreyptedFormat() is before you pass it along the URL? > > chris olive, cio > cresco technologies > [EMAIL PROTECTED] > http://www.crescotech.com

RE: Encryption problem when passed in URL?

2000-12-05 Thread Christopher Olive, CIO
why not URLEncreyptedFormat() is before you pass it along the URL? chris olive, cio cresco technologies [EMAIL PROTECTED] http://www.crescotech.com -Original Message- From: Phill Gibson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 05, 2000 1:46 PM To: CF-Talk Subject: Encryption

RE: Encryption problem when passed in URL?

2000-12-05 Thread Jeff Britts
use the urlencodedformat function to escape any of the url unfriendly characters, then urldecode it before decrypt. Jeff Britts ColdFusion Engineer e-Dialog -Original Message- From: Phill Gibson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 05, 2000 1:46 PM To: CF-Talk Subject: Enc

Re: Encryption problem when passed in URL?

2000-12-05 Thread pan
> > > > > Before encryption, date is #date# > > > Encrypted, date2 is #date2# > > > After encryption, date is #date# > > > > With that given key and string, it gives the following output: > Before encryption, date is 27-FEB-02:28:07:18 > Encrypted, date2 is 2#1 276*NP/W/WWV.Y\,1]4O

Re: Encryption problem when passed in URL?

2000-12-05 Thread Keith C. Ivey
"Phill Gibson" <[EMAIL PROTECTED]> wrote: > Link Keith C. Ivey <[EMAIL PROTECTED]> Webmaster, EEI Communications 66 Canal Center Plaza, Suite 200 Alexandria, VA 22314 Telephone: 703-683-0683 Fax: 703-683-4915 Web Site: http://www.eeicommunications.com

RE: Encryption problem when passed in URL?

2000-12-05 Thread Bob Silverberg
How about the URLEncodedFormat function? Bob -Original Message- From: Phill Gibson [mailto:[EMAIL PROTECTED]] Sent: December 5, 2000 1:46 PM To: CF-Talk Subject: Encryption problem when passed in URL? Hi Everyone, Try this: Before encryption, date is #date# Encrypted, date2 is

RE: Encryption problem when passed in URL?

2000-12-05 Thread Marcus
try wrapping a urlencode around the variable. This should place a %20 in the space and fix your difficulty. Marcus > Hi Everyone, > > Try this: > > > > > > Before encryption, date is #date# > > > Encrypted, date2 is #date2# > > > After encryption, date is #date# > > > > With that given ke

RE: Encryption problem when passed in URL?

2000-12-05 Thread Evan Lavidor
When you send the mail, why don't you use URLEncodedFormat() and then use URLDecode() on the other side? Evan > -Original Message- > From: Phill Gibson [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, December 05, 2000 1:46 PM > To: CF-Talk > Subject: Encryption problem when passed in URL? >

RE: Encryption problem when passed in URL?

2000-12-05 Thread John Rice
How about urldEncodedFormat()? mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 05, 2000 1:46 PM To: CF-Talk Subject: Encryption problem when passed in URL? Hi Everyone, Try this: Before encryption, date is #date# Encrypted, date2 is #date2# After encryption, date is #date# Wi