Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Cipher for VFP (Storing encrypted Keys)
Message
 
 
To
04/06/2003 11:50:55
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00796234
Message ID:
00796245
Views:
51
Here's a sample code that shows how to encrypt/decrypt a string. You can do the same with table fields. Keep in mind that such fields should be define as Character/Binary so they wouldn't be affect by codepage translation.
lcStr = "MyPassword"
lcEncryptPassword  = "XhTYtykkgy12345"
lcEnrypted = Encrypt("MyPassword", lcEncryptPassword)
? lcEnrypted
...
lcDecrypted = Encrypt(lcEnrypted, lcEncryptPassword)
? lcDecrypted
>Please Has any body used the Cipher for storing all the keys to the VFP application.
>
>I have downloaded the cypher from the forum(Sergey Provided the Link).
>
>But i have the cypher.fll file and msvcrt.dll file.
>
>Can you please tell me how i can use the above two files via VFP application which is a client server(Multi user) application.
>
>Thank you very much.
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform