setBits() public method

Method to set the cost
public setBits ( integer $bits = 512 ) : self
$bits integer
return self
Example #1
0
 public function testShaBitsException()
 {
     $this->setExpectedException('Pop\\Crypt\\Exception');
     $crypt = new Crypt\Sha();
     $crypt->setBits(100);
 }