mcrypt_encrypt
Encrypts plaintext with given parameters
&warn.deprecated.function-7-1-0.removed-7-2-0;
&reftitle.description;
stringfalsemcrypt_encrypt
stringcipher
stringkey
stringdata
stringmode
stringiv
Encrypts the data and returns it.
&reftitle.parameters;
cipher
&mcrypt.parameter.cipher;
key
The key with which the data will be encrypted. If the provided key size is
not supported by the cipher, the function will emit a warning and return &false;
data
The data that will be encrypted with the given cipher
and mode. If the size of the data is not n * blocksize,
the data will be padded with '\0'.
The returned crypttext can be larger than the size of the data that was
given by data.
mode
&mcrypt.parameter.mode;
iv
&mcrypt.parameter.iv.strict;
&reftitle.returnvalues;
Returns the encrypted data as a string &return.falseforfailure;.
&reftitle.examples;
mcrypt_encrypt Example
]]>
&example.outputs;
&reftitle.seealso;
mcrypt_decrypt
mcrypt_module_open