RE: [cfaussie] JavaScript equivelant to HASH function

2011-08-08 Thread charlie arehart
@googlegroups.com Subject: RE: [cfaussie] JavaScript equivelant to HASH function Charlie I just mean not obvious as you say. It is for an admin system so from a client perspective it is more of a perceived security thing more than anything else. I don't like passing things around the URL

RE: [cfaussie] JavaScript equivelant to HASH function

2011-08-04 Thread charlie arehart
To: cfaussie@googlegroups.com Subject: RE: [cfaussie] JavaScript equivelant to HASH function I am passing some JSON strings around which i want to just encode and decode elsewhere -Original Message- From: Zac Spitzer [mailto:zac.spit...@gmail.com] Sent: Thursday, 4 August 2011 2:55 PM

RE: [cfaussie] JavaScript equivelant to HASH function

2011-08-04 Thread Steve Onnis
@googlegroups.com Subject: RE: [cfaussie] JavaScript equivelant to HASH function Steve, you've mentioned 3 really unrelated subjects in this thread: hashing and encoding, and others have mentioned encrypting. So which is it you really need? In your last note, you say I am passing some JSON strings around

RE: [cfaussie] JavaScript equivelant to HASH function

2011-08-04 Thread charlie arehart
@googlegroups.com] On Behalf Of Steve Onnis Sent: Thursday, August 04, 2011 10:11 AM To: cfaussie@googlegroups.com Subject: RE: [cfaussie] JavaScript equivelant to HASH function I just don't want it human readable. Like i have foo.cfm?{var:val} and i just want to encrypt the query string and decrypt

RE: [cfaussie] JavaScript equivelant to HASH function

2011-08-04 Thread Dale Fraser
[mailto:cfaussie@googlegroups.com] On Behalf Of Steve Onnis Sent: Friday, 5 August 2011 12:11 AM To: cfaussie@googlegroups.com Subject: RE: [cfaussie] JavaScript equivelant to HASH function I just don't want it human readable. Like i have foo.cfm?{var:val} and i just want to encrypt the query string

RE: [cfaussie] JavaScript equivelant to HASH function

2011-08-04 Thread Steve Onnis
- From: charlie arehart [mailto:charlie_li...@carehart.org] Sent: Friday, 5 August 2011 12:36 AM To: cfaussie@googlegroups.com Subject: RE: [cfaussie] JavaScript equivelant to HASH function Well, are you sure that's really all you mean? Because you can make it non-human readable by encoding

Re: [cfaussie] JavaScript equivelant to HASH function

2011-08-03 Thread Paul Kukiel
hash by default is MD5 as long as you are using md5 then: http://pajhome.org.uk/crypt/md5/ Works well. Paul On Thu, Aug 4, 2011 at 2:33 PM, Steve Onnis st...@cfcentral.com.au wrote: Does anyone know if there is a JavaScript equivelant to the coldfusion HASH() function? ** **

RE: [cfaussie] JavaScript equivelant to HASH function

2011-08-03 Thread Steve Onnis
Actually wrong one. Was meant to ask about cfusion_encrypt() From: Paul Kukiel [mailto:kuki...@gmail.com] Sent: Thursday, 4 August 2011 2:39 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] JavaScript equivelant to HASH function hash by default is MD5 as long as you are using md5

RE: [cfaussie] JavaScript equivelant to HASH function

2011-08-03 Thread Steve Onnis
Basically i need something that i can use to encode/decode the same way in both cfml and javascript Any ideas? From: Paul Kukiel [mailto:kuki...@gmail.com] Sent: Thursday, 4 August 2011 2:39 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] JavaScript equivelant to HASH function

Re: [cfaussie] JavaScript equivelant to HASH function

2011-08-03 Thread Zac Spitzer
: Basically i need something that i can use to encode/decode the same way in both cfml and javascript Any ideas? From: Paul Kukiel [mailto:kuki...@gmail.com] Sent: Thursday, 4 August 2011 2:39 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] JavaScript equivelant to HASH function

RE: [cfaussie] JavaScript equivelant to HASH function

2011-08-03 Thread Steve Onnis
I am passing some JSON strings around which i want to just encode and decode elsewhere -Original Message- From: Zac Spitzer [mailto:zac.spit...@gmail.com] Sent: Thursday, 4 August 2011 2:55 PM To: cfaussie@googlegroups.com Subject: Re: [cfaussie] JavaScript equivelant to HASH function