Thanks so far, but I am still not having much luck.  Am a disecting
the following line of PERL and here is what I seem to understand:

$modulus = unpack('H*', MIME::Base64::decode($modulus) );

First the value of $modulus is being decoded from Base64.  Then unpack
is grabing the whole thing and putting it back into modulus.  So in
this example, I don't think unpack is really doing anything.  I would
suspect that the following line of PERL would do the same thing.

$modulus = MIME::Base64::decode($modulus);

So now how would I do this in ColdFusion?

<cfset modulus = toString(toBinary(modulus)) />

OR
 
<cfset modulus = toBinary(toString(modulus)) />

OR 

<cfset something else />

Thanks,
Troy

-- 
Troy Simpson
  Applications Analyst/Programmer, OCPDBA, MCSE, SCSA
North Carolina State University Libraries
Campus Box 7111 | Raleigh | North Carolina
ph.919.515.3855 | fax.919.513.3330
E-mail: [EMAIL PROTECTED]

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193496
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to