- Binary format of an encrypted string
- Encrypting and decrypting an external file
- Encryption in PHP
- Encryption in Android/Java and decryption by a WINDEV application (or conversely)
Encrypt (Function) In french: Crypte
Warning
From version 24, Crypt is kept for backward compatibility. This function is replaced by Encrypt.
Encrypts a character string in binary format or in ASCII format. Remarks: - This character string can be decrypted by Decrypt.
- If the encryption and the decryption are performed on different platforms (encryption in Android and decryption in Windows for example), use EncryptStandard and DecryptStandard. For more details, refer to the "Remarks" paragraph.
// Encrypt a string Res = Encrypt("My credit card number is 52327453829011", "Password")
// Encode a string in base 64 bufBase64 is Buffer = Encrypt(bufToEncode, "", compressNone + cryptNone, encodeBASE64)
Syntax
<Result> = Encrypt(<String to encrypt> , <Password> [, <Type of encryption> [, <Format of encrypted string>]])
Remarks Encrypting and decrypting an external file
This page is also available for…
|
|
|
|