roll your own...
here's on i knocked up earlier - very basic & doesn't work if you have foreign (circumflexed, acute, grave) accented characters in the data.
paste it into a prg, modify & play
IF !USED("dealer"

USE c:\dealer.dbf IN 0 ALIAS dealer
ENDIF
AFIELDS(myarr)
FOR x=1 TO ALEN(myarr,1)
IF ALLTRIM(myarr(x,2))="C"
REPLACE ALL &myarr(x,1) WITH defunc(&myarr(x,1))
endif
endfor
*******************************************
function enfunc(cToencrypt)
content=""
FOR e=1 to LEN(cToencrypt)
m.ch = SUBSTR(cToencrypt,e,1)
IF ASC(m.ch) < 123
Content = Content + CHR(ASC(m.ch)+100)
ELSE
Content = Content + m.ch
ENDIF
NEXT
return content
*******************************************
function defunc(cTodecrypt)
content=""
FOR e=1 to LEN(cTodecrypt)
m.ch = SUBSTR(cTodecrypt,e,1)
IF ASC(m.ch) > 123
Content = Content + CHR(ASC(m.ch)-100)
ELSE
Content = Content + m.ch
ENDIF
NEXT
return content
MrF