T
TJS
small function encodes text to asc values by this loop
' iterate through password text
'-----------------------------------------------
for f=1 to len(pPassword)
pNewPassword=pNewPassword &"|" & ASC( mid(pPassword,f,1) )
next
how can the password be decoded back to readable text ?
when I try this, it returns gibberish
pPassword=split("|132|179|138|42|200","|")
for f= 1 to ubound(pPassword)
pNewPassword= pNewPassword & chr( pPassword(f) )
next
' iterate through password text
'-----------------------------------------------
for f=1 to len(pPassword)
pNewPassword=pNewPassword &"|" & ASC( mid(pPassword,f,1) )
next
how can the password be decoded back to readable text ?
when I try this, it returns gibberish
pPassword=split("|132|179|138|42|200","|")
for f= 1 to ubound(pPassword)
pNewPassword= pNewPassword & chr( pPassword(f) )
next