MediaWiki master
MWCryptRand.php
Go to the documentation of this file.
1<?php
7namespace MediaWiki\Utils;
8
16
24 public static function generateHex( $chars ) {
25 // hex strings are 2x the length of raw binary so we divide the length in half
26 // odd numbers will result in a .5 that leads the generate() being 1 character
27 // short, so we use ceil() to ensure that we always have enough bytes
28 $bytes = ceil( $chars / 2 );
29 // Generate the data and then convert it to a hex string
30 $hex = bin2hex( random_bytes( $bytes ) );
31
32 // A bit of paranoia here, the caller asked for a specific length of string
33 // here, and it's possible (eg when given an odd number) that we may actually
34 // have at least 1 char more than they asked for. Just in case they made this
35 // call intending to insert it into a database that does truncation we don't
36 // want to give them too much and end up with their database and their live
37 // code having two different values because part of what we gave them is truncated
38 // hence, we strip out any run of characters longer than what we were asked for.
39 return substr( $hex, 0, $chars );
40 }
41}
42
44class_alias( MWCryptRand::class, 'MWCryptRand' );
A cryptographic random generator class used for generating secret keys.
static generateHex( $chars)
Generate a run of cryptographically random data and return it in hexadecimal string format.
Copyright (C) 2017 Kunal Mehta legoktm@debian.org