Mates,
I got this simple VBScript encryption from somewhere else (I forgot that excelent site):
I got this simple VBScript encryption from somewhere else (I forgot that excelent site):
Code:
Function denc(txt)
Dim str, i, strlen
strlen = Len(txt)
For i = 1 To strlen
str = str + Chr(Asc(Mid(txt, i)) Xor 128)
Next
denc = str
End Function
{/code]
I've struggling to conver those to <CFSCRIPT> codes or change it to a <CFLOOP> tag with no luck.
Any help would be appreciated.
TIA
mansii