|
|
|
|
|
- Encrypting and decrypting an external file
- Decrypting a stream in base64binary format
- Encryption in PHP
- Encryption in Android/Java and decryption by a WINDEV application (or conversely)
Advertencia
A partir de la versión 24, Uncrypt se conserva por motivos de compatibilidad. Esta función ha sido reemplazada por Decrypt.
Decrypts a character string that was encrypted by Encrypt. Note If encryption and decryption are performed on different platforms (e.g. encryption on Android and decryption on Windows), use the functions EncryptStandard and DecryptStandard. For more details, refer to the "Remarks" paragraph.
// Encrypt a string ResEncrypt = Encrypt("The number of my bank account in Switzerland is 74538290", "Password") ... // Decrypt the string Res = Decrypt(ResEncrypt, "Password")
// Decode the data encoded in base 64 bufDecode is Buffer = Decrypt(bufBase64, "", crypteNone, encodeBASE64)
Sintaxis
<Result> = Decrypt(<Encrypted string> , <Password> [, <Type of encryption used> [, <Format of encrypted string>]])
Observaciones Encrypting and decrypting an external file Decrypting a stream in base64binary format To decrypt a string encrypted in base64, you must use: ResultString = Decrypt(EncryptedString, "", cryptNone, encodeBASE64) // or ResultString = Decrypt(EncryptedString, encodeBASE64)
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|