for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PBurggraf\CRC\CRC32;
/**
* @author Philip Burggraf <[email protected]>
*/
class CRC32 extends AbstractCRC32
{
public function __construct()
$this->poly = 0x04c11db7;
$this->init = 0xffffffff;
$this->reverseIn = true;
$this->reverseOut = true;
$this->xorOut = 0xffffffff;
$this->lookupTable = $this->generateTable($this->poly);
}