Function: aes_256_decrypt()

function aes_256_decrypt(string $edata, string $password_key): string;

Decrypts the text previously encrypted with the AES 256 using a password key.

Parameters

Name Pass type Value type Default value Description
$edata by value string

The data to be decrypted.

$password_key by value string

The password key used for the encryption.

Returns

string

Returns the decrypted text.

Authors

Oleg Schildt

Package

Source code

See also