SimpleSAML\Utils\Crypto::aesDecrypt PHP Method

aesDecrypt() public static method

Decrypt data using AES-256-CBC and the system-wide secret salt as key.
Author: Andreas Solberg, UNINETT AS ([email protected])
Author: Jaime Perez, UNINETT AS ([email protected])
public static aesDecrypt ( string $ciphertext ) : string
$ciphertext string The IV used and the encrypted data, concatenated.
return string The decrypted data.
    public static function aesDecrypt($ciphertext)
    {
        return self::_aesDecrypt($ciphertext, Config::getSecretSalt());
    }