|
|
|
|
|
- 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)
Advertencia
A partir de la versión 24, Crypt se conserva por motivos de compatibilidad. Esta función ha sido reemplazada por 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)
Sintaxis
<Result> = Encrypt(<String to encrypt> , <Password> [, <Type of encryption> [, <Format of encrypted string>]])
Observaciones Encrypting and decrypting an external file
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|