requirestrong = $requirestrong; } /** * {@inheritdoc} */ public function getRandomBytes($bytecount) { $result = openssl_random_pseudo_bytes($bytecount, $crypto_strong); if ($this->requirestrong && ($crypto_strong === false)) { throw new RNGException('openssl_random_pseudo_bytes returned non-cryptographically strong value'); } if ($result === false) { throw new RNGException('openssl_random_pseudo_bytes returned an invalid value'); } return $result; } /** * {@inheritdoc} */ public function isCryptographicallySecure() { return $this->requirestrong; } }