getCryptRand(); } /** * Return a boolean indicating whether or not the source used for cryptographic * random bytes generation in the previously run generate* call * was cryptographically strong. * * @return bool Returns true if the source was strong, false if not. */ public static function wasStrong() { return self::singleton()->wasStrong(); } /** * Generate a run of (ideally) cryptographically random data and return * it in raw binary form. * You can use MWCryptRand::wasStrong() if you wish to know if the source used * was cryptographically strong. * * @param int $bytes The number of bytes of random data to generate * @param bool $forceStrong Pass true if you want generate to prefer cryptographically * strong sources of entropy even if reading from them may steal * more entropy from the system than optimal. * @return string Raw binary random data */ public static function generate( $bytes, $forceStrong = false ) { return self::singleton()->generate( $bytes, $forceStrong ); } /** * Generate a run of (ideally) cryptographically random data and return * it in hexadecimal string format. * You can use MWCryptRand::wasStrong() if you wish to know if the source used * was cryptographically strong. * * @param int $chars The number of hex chars of random data to generate * @param bool $forceStrong Pass true if you want generate to prefer cryptographically * strong sources of entropy even if reading from them may steal * more entropy from the system than optimal. * @return string Hexadecimal random data */ public static function generateHex( $chars, $forceStrong = false ) { return self::singleton()->generateHex( $chars, $forceStrong ); } }