110 if ( strlen( $secretKeyMaterial ) < 16 ) {
111 throw new InvalidArgumentException(
"secret was too short." );
113 $this->skm = $secretKeyMaterial;
121 $this->cacheKey =
$cache->makeKey(
'HKDF', mt_rand( 0, 16 ) );
130 if ( $this->lastK ) {
131 $this->
cache->set( $this->cacheKey, $this->lastK );
140 if ( $this->salt ==
'' ) {
141 $lastSalt = $this->
cache->get( $this->cacheKey );
142 if ( $lastSalt ===
false ) {
149 $lastSalt = random_bytes( 16 );
152 $this->salt = hash( $this->algorithm, $lastSalt,
true );
166 if ( $this->prk ===
'' ) {
168 $this->prk = self::HKDFExtract(
175 $CTXinfo = implode(
':', array_merge( $this->context, [
$context ] ) );
177 return self::HKDFExpand(
215 public static function HKDF( $hash, $ikm, $salt, $info, $L ) {
216 $prk = self::HKDFExtract( $hash,
$salt, $ikm );
217 $okm = self::HKDFExpand( $hash,
$prk, $info, $L );
232 return hash_hmac( $hash, $ikm,
$salt,
true );
250 private static function HKDFExpand( $hash, $prk, $info, $bytes, &$lastK =
'' ) {
251 $hashLen = self::$hashLength[$hash];
252 $rounds = ceil( $bytes / $hashLen );
255 if ( $bytes > 255 * $hashLen ) {
256 throw new InvalidArgumentException(
'Too many bytes requested from HDKFExpand' );
261 for ( $counter = 1; $counter <= $rounds; ++$counter ) {
264 $lastK . $info . chr( $counter ),
271 return substr(
$output, 0, $bytes );
Class representing a cache/ephemeral data store.
generate( $bytes, $context='')
Produce $bytes of secure random data.
string $skm
The secret key material.
getSaltUsingCache()
MW specific salt, cached from last run.
string $lastK
The last block (K(i)) of the most recent expanded key.
static HKDFExpand( $hash, $prk, $info, $bytes, &$lastK='')
Expand the key with the given context.
__destruct()
Save the last block generated, so the next user will compute a different PRK from the same SKM.
static HKDF( $hash, $ikm, $salt, $info, $L)
RFC5869 defines HKDF in 2 steps, extraction and expansion.
static int[] $hashLength
Round count is computed based on the hash'es output length, which neither php nor openssl seem to pro...
string $algorithm
The hash algorithm being used.
string $salt
binary string, the salt for the HKDF
string $prk
The pseudorandom key.
static HKDFExtract( $hash, $salt, $ikm)
Extract the PRK, PRK = HMAC(XTS, SKM) Note that the hmac is keyed with XTS (the salt),...
__construct( $secretKeyMaterial, $algorithm, BagOStuff $cache, $context)
string $cacheKey
Cache key we'll use for our salt.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on and they can depend only on the ResourceLoaderContext $context
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place $output
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
you have access to all of the normal MediaWiki so you can get a DB use the cache
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))