Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Cipher for VFP (Storing encrypted Keys)
Message
 
 
À
04/06/2003 11:50:55
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00796234
Message ID:
00796245
Vues:
52
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--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform