function decrypt($encrypted, $key) { return openssl_decrypt($encrypted, 'AES-256-CBC', $key, 0, $key); }