HMAC Algorithms and Encoding?

2014-09-09 Thread Sandra Clark
. The message can be a String or a byte array. key Required The secret key to create HMAC. The key can be a String or a byte array. algorithm Optional Algorithm used. encoding Optional Encoding to be used. No where can I find the algorithms or encoding options that can be used

Re: HMAC Algorithms and Encoding?

2014-09-09 Thread Dean Lawrence
. key Required The secret key to create HMAC. The key can be a String or a byte array. algorithm Optional Algorithm used. encoding Optional Encoding to be used. No where can I find the algorithms or encoding options that can be used. The example itself is of little use

RE: HMAC Algorithms and Encoding?

2014-09-09 Thread Sandra Clark
:53 AM To: cf-talk Subject: Re: HMAC Algorithms and Encoding? Sandy, I do believe that you can use any algorithm that the hash function supports. Take a look at the documentation for hash and you will see what options you have

RE: HMAC Algorithms and Encoding?

2014-09-09 Thread Scott Stewart
: Algorithm SHA-256 not available. HASH() documentation is showing SHA-256 *sigh* -Original Message- From: Dean Lawrence [mailto:dean...@gmail.com] Sent: Tuesday, September 9, 2014 9:53 AM To: cf-talk Subject: Re: HMAC Algorithms and Encoding? Sandy, I do believe that you can use

Re: HMAC Algorithms and Encoding?

2014-09-09 Thread Dean Lawrence
while generating HMAC. Error: Algorithm SHA-256 not available. HASH() documentation is showing SHA-256 *sigh* -Original Message- From: Dean Lawrence [mailto:dean...@gmail.com] Sent: Tuesday, September 9, 2014 9:53 AM To: cf-talk Subject: Re: HMAC Algorithms and Encoding? Sandy

RE: HMAC Algorithms and Encoding?

2014-09-09 Thread Sandra Clark
:01 AM To: cf-talk Subject: Re: HMAC Algorithms and Encoding? Sandy, Looking at the example in the HMAC() docs, they prefixed the algorithm type with HMAC. Maybe if you try HMACSHA-256, to see if it works? On Tue, Sep 9, 2014 at 10:46 AM, Sandra Clark sclarkli...@gmail.com wrote: Tried that, I

RE: HMAC Algorithms and Encoding?

2014-09-09 Thread Scott Stewart
...@gmail.com] Sent: Tuesday, September 9, 2014 11:01 AM To: cf-talk Subject: Re: HMAC Algorithms and Encoding? Sandy, Looking at the example in the HMAC() docs, they prefixed the algorithm type with HMAC. Maybe if you try HMACSHA-256, to see if it works? On Tue, Sep 9, 2014 at 10:46 AM

Re: HMAC Algorithms and Encoding?

2014-09-09 Thread Pete Freitag
. -Original Message- From: Dean Lawrence [mailto:dean...@gmail.com] Sent: Tuesday, September 9, 2014 11:01 AM To: cf-talk Subject: Re: HMAC Algorithms and Encoding? Sandy, Looking at the example in the HMAC() docs, they prefixed the algorithm type with HMAC. Maybe if you try HMACSHA-256

RE: HMAC Algorithms and Encoding?

2014-09-09 Thread Sandra Clark
Thanks Pete! -Original Message- From: Pete Freitag [mailto:p...@foundeo.com] Sent: Tuesday, September 9, 2014 2:11 PM To: cf-talk Subject: Re: HMAC Algorithms and Encoding? Try HMACSHA256 for the algorithm see http://cfdocs.org/hmac -- Pete Freitag - Adobe Community Professional

Re: HMAC Algorithms and Encoding?

2014-09-09 Thread Carl Von Stetten
Subject: Re: HMAC Algorithms and Encoding? Try HMACSHA256 for the algorithm see http://cfdocs.org/hmac -- Pete Freitag - Adobe Community Professional http://foundeo.com/ - ColdFusion Consulting Products http://hackmycf.com - Is your ColdFusion Server Secure? http://www.youtube.com/watch?v

Re: HMAC Algorithms and Encoding?

2014-09-09 Thread Scott Stewart
, Sandra Clark wrote: Thanks Pete! -Original Message- From: Pete Freitag [mailto:p...@foundeo.com] Sent: Tuesday, September 9, 2014 2:11 PM To: cf-talk Subject: Re: HMAC Algorithms and Encoding? Try HMACSHA256 for the algorithm see http://cfdocs.org/hmac -- Pete

Re: Algorithms

2010-10-07 Thread Maureen
While those concepts won't necessarily help you with Cold Fusion, a good grounding in algorithms will make you a better programmer. In fact, the best programming book I have read is called Algorithms + Data Structures = Programs. I am a firm believer that if you know programming theory, you can

Algorithms

2010-10-04 Thread fun and learning
Hi All- This question is not directly related to Coldfusion. I just came across the below lectures on algorithms from MIT. Does it help to know those concepts to get better in Coldfusion? http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-046j-introduction-to-algorithms

Re: Algorithms

2010-10-04 Thread Mike Chabot
on algorithms from MIT. Does it help to know those concepts to get better in Coldfusion? http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-046j-introduction-to-algorithms-sma-5503-fall-2005/video-lectures

RE: Algorithms

2010-10-04 Thread Justin Scott
The topics on that page won't be obviously beneficial to most ColdFusion programmers. I agree, with a note that these topics appear to be lower-level in nature than CF programmers have to deal with. CF is essentially an abstraction of Java at this point, which itself is a high-level language

Re: Algorithms

2010-10-04 Thread Sean Corfield
On Mon, Oct 4, 2010 at 9:25 AM, fun and learning funandlrnn...@gmail.com wrote: This question is not directly related to Coldfusion. I just came across the below lectures on algorithms from MIT. Does it help to know those concepts to get better in Coldfusion? http://ocw.mit.edu/courses

Re: Algorithms

2010-10-04 Thread Judah McAuley
I'd say that it is definitely worthwhile to have an understanding of how algorithms work. Programmers should have a rough understanding of whether the way they are tackling a problem is O(n) or O(n^2) for instance. Is it better to solve a problem iteratively or recursively? You probably won't