isSecure = $isSecure; } /** * {@inheritdoc} */ public function getRandomBytes($bytecount) { $result = ''; for ($i = 0; $i < $bytecount; $i++) { $result .= chr($i); } return $result; } /** * {@inheritdoc} */ public function isCryptographicallySecure() { return $this->isSecure; } }