Pop\Crypt\Sha::__construct PHP Метод

__construct() публичный Метод

Instantiate the sha object.
public __construct ( integer $bits = 512, integer $rounds = 5000 ) : self
$bits integer
$rounds integer
Результат self
    public function __construct($bits = 512, $rounds = 5000)
    {
        $this->setBits($bits);
        $this->setRounds($rounds);
    }