Recall that the data is GZIP compressed before being sent over the network, as bandwidth was identified as an issue. Alter the end of the open() function to this:
...
var decompressed = _gzipDecompress(rc4DataBytesDecrypt);
return decompressed;
}
Recall that the data is GZIP compressed before being sent over the network, as bandwidth was identified as an issue. Alter the end of the open() function to this:
...
var decompressed = _gzipDecompress(rc4DataBytesDecrypt);
return decompressed;
}