MediaWiki REL1_33
CryptRand.php
Go to the documentation of this file.
1<?php
30class CryptRand {
34 const MIN_ITERATIONS = 1000;
35
39 const MSEC_PER_BYTE = 0.5;
40
48 protected function initialRandomState() {
49 wfDeprecated( __METHOD__, '1.32' );
50 return '';
51 }
52
62 protected function driftHash( $data ) {
63 wfDeprecated( __METHOD__, '1.32' );
64 return '';
65 }
66
74 protected function randomState() {
75 wfDeprecated( __METHOD__, '1.32' );
76 return '';
77 }
78
88 public function wasStrong() {
89 wfDeprecated( __METHOD__, '1.32' );
90 return true;
91 }
92
102 public function generate( $bytes ) {
103 wfDeprecated( __METHOD__, '1.32' );
104 $bytes = floor( $bytes );
105 return random_bytes( $bytes );
106 }
107
115 public function generateHex( $chars ) {
116 wfDeprecated( __METHOD__, '1.32' );
117 return MWCryptRand::generateHex( $chars );
118 }
119}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
generate( $bytes)
Generate a run of cryptographically random data and return it in raw binary form.
wasStrong()
Return a boolean indicating whether or not the source used for cryptographic random bytes generation ...
Definition CryptRand.php:88
driftHash( $data)
Randomly hash data while mixing in clock drift data for randomness.
Definition CryptRand.php:62
randomState()
Return a rolling random state initially build using data from unstable sources.
Definition CryptRand.php:74
generateHex( $chars)
Generate a run of cryptographically random data and return it in hexadecimal string format.
const MSEC_PER_BYTE
Definition CryptRand.php:39
initialRandomState()
Initialize an initial random state based off of whatever we can find.
Definition CryptRand.php:48
const MIN_ITERATIONS
Definition CryptRand.php:34
static generateHex( $chars)
Generate a run of cryptographically random data and return it in hexadecimal string format.
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)