Faith Sloan
Member since Dec 11, 2008
- Profile: /members/805-faith-sloan.htm
- URL: http://faithsloan.com
- Comments: 5
Recent Blog Comments By Faith Sloan
-
Hashing Byte Arrays (Binary Data) With ColdFusion Before ColdFusion 10
Posted on May 31, 2012 at 9:33 AM
From a colleague over at stackoverflow.com Leigh you are WONDERFUL! Thank you! ==== **UPDATE:** Based on the updated code, some of the instructions may be a bit misleading. I believe they just mean decode the `xml` and `salt` strings from their given encoding (base64 and utf-8) into *byte arrays*, n... read more »
-
Hashing Byte Arrays (Binary Data) With ColdFusion Before ColdFusion 10
Posted on May 30, 2012 at 5:22 PM
oops! Let me try again. The algorithm sounds simple enough. But trying to implement it is killing me. 1. compute the hash string value of the XMLPost string above: a. convert the base64 salt string to a UTF-8 byte array. b. convert the base64 XML payload string to a UTF-8 byte array. ... read more »
-
Hashing Byte Arrays (Binary Data) With ColdFusion Before ColdFusion 10
Posted on May 30, 2012 at 5:21 PM
Can anyone convert this algorithm to ColdFusion code? I am trying to add my code in this post but I am not able to on this blog. I get this error... read more »
-
Hashing Byte Arrays (Binary Data) With ColdFusion Before ColdFusion 10
Posted on May 25, 2012 at 3:01 PM
Hello Ben and all. I tried ucase( digestUtils.sha512( imageBinary ) ) for SHA-512 hashing I get that dreaded: The sha512 method was not found. Either there are no methods with the specified method name and argument types or the sha512 method is overloaded with argument types that C... read more »
-
ColdFusion Component Wrapper For POI To Read And Write Excel Files
Posted on Aug 20, 2007 at 11:58 AM
Here is the solution to your problem Emmim44. I Deleted third parameter of four, "CF_SQL_VARCHAR" since the QueryAddColumn function only takes on 3 parameters in CF 6.1. Only allows "query", "column-name", and "array-name" to be passed. CF MX 7+ takes on 4 parameters: "query", "column-name",opti... read more »