MediaWiki  1.33.0
MWCryptRand.php
Go to the documentation of this file.
1 <?php
28 
29 class MWCryptRand {
34  protected static function singleton() {
35  wfDeprecated( __METHOD__, '1.32' );
36  return MediaWikiServices::getInstance()->getCryptRand();
37  }
38 
48  public static function wasStrong() {
49  wfDeprecated( __METHOD__, '1.32' );
50  return true;
51  }
52 
62  public static function generate( $bytes ) {
63  wfDeprecated( __METHOD__, '1.32' );
64  return random_bytes( floor( $bytes ) );
65  }
66 
74  public static function generateHex( $chars ) {
75  // hex strings are 2x the length of raw binary so we divide the length in half
76  // odd numbers will result in a .5 that leads the generate() being 1 character
77  // short, so we use ceil() to ensure that we always have enough bytes
78  $bytes = ceil( $chars / 2 );
79  // Generate the data and then convert it to a hex string
80  $hex = bin2hex( random_bytes( $bytes ) );
81 
82  // A bit of paranoia here, the caller asked for a specific length of string
83  // here, and it's possible (eg when given an odd number) that we may actually
84  // have at least 1 char more than they asked for. Just in case they made this
85  // call intending to insert it into a database that does truncation we don't
86  // want to give them too much and end up with their database and their live
87  // code having two different values because part of what we gave them is truncated
88  // hence, we strip out any run of characters longer than what we were asked for.
89  return substr( $hex, 0, $chars );
90  }
91 }
MWCryptRand\wasStrong
static wasStrong()
Return a boolean indicating whether or not the source used for cryptographic random bytes generation ...
Definition: MWCryptRand.php:48
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
wfDeprecated
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
Definition: GlobalFunctions.php:1078
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
MWCryptRand\generate
static generate( $bytes)
Generate a run of cryptographically random data and return it in raw binary form.
Definition: MWCryptRand.php:62
MWCryptRand
Definition: MWCryptRand.php:29
MWCryptRand\generateHex
static generateHex( $chars)
Generate a run of cryptographically random data and return it in hexadecimal string format.
Definition: MWCryptRand.php:74
MWCryptRand\singleton
static singleton()
Definition: MWCryptRand.php:34
MediaWikiServices
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency MediaWikiServices
Definition: injection.txt:23