Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Encrypting Data Strings

Status
Not open for further replies.

prustie

Programmer
Aug 6, 2001
34
0
0
GB
HI

Does anyone have experience of using XceedEncryption Library in VFP?

If so can you tell me what I have to do to encrypt/decrypt a string.

Thanks.

Malcolm P.
 
Malcolm,

I have never used XceedEncryption (am very new to VFP) but if you are looking to encrypt a string why not do it yourself.

Do something along the lines of;

Function ENCRYPT
PARAM _PassWord
_Encrypted = ""
For _Pass = 1 to LEN((ALLT(_PassWord))
_Encrypted = _Encrypted + CHR(ASC(SUBS(ALLT(_PassWord), _Pass, 1)) + INT(LEN(ALLT(_Password)) * (_Pass + 12)))
Next
Return _Encrypted
(Like Harry Potter's schooling, I can't do anything without a spell checker)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top