We have been using cfldap to authtenticate users against our Windows 2000
domain. We recently had to start storing our Active Directory password
information using Reversible Encryption. Is there a tag available that will
translate the password entered into "reversible encryption" and allow
authentication?


<CFTRY>
<cfldap action="QUERY"
name="UserSearch"

attributes="samAccountName,displayName,mail,depart ment,physicalDeliveryOfficeNam
e,description,MemberOf"
start="OU=Metro,DC=xxx,DC=com"
scope="SUBTREE"
server="xxx.xxx.xxx.xxx"
port="389"
filter="sAMAccountName=#username#"
username="#username#@xxxxx..com"
password="#password#">

<CFIF UserSearch.RecordCount GT 0>
<CFSET LoginResult = "OK">
<CFSET LoginType = "User">
<CFSET LoginUser = "">
</CFIF>

<CFCATCH TYPE="Any">
<CFSET LoginResult = "FAIL">
<CFSET LoginType = "">
<CFSET LoginUser = "">
</CFCATCH>

</CFTRY>