mediawiki-extensions-Scribunto/includes/engines/LuaCommon/HashLibrary.php
Umherirrender 55bd9d22bb Add method scope visibility
Change-Id: I2efe0f71266d70e9a41e044406d82ef7daa31296
2018-11-19 21:18:12 +00:00

46 lines
896 B
PHP

<?php
class Scribunto_LuaHashLibrary extends Scribunto_LuaLibraryBase {
public function register() {
$lib = [
'listAlgorithms' => [ $this, 'listAlgorithms' ],
'hashValue' => [ $this, 'hashValue' ],
];
return $this->getEngine()->registerInterface( 'mw.hash.lua', $lib );
}
/**
* Returns a list of known/ supported hash algorithms
*
* @internal
* @return string[][]
*/
public function listAlgorithms() {
$algos = hash_algos();
$algos = array_combine( range( 1, count( $algos ) ), $algos );
return [ $algos ];
}
/**
* Hash a given value.
*
* @internal
* @param string $algo
* @param string $value
* @return string[]
*/
public function hashValue( $algo, $value ) {
if ( !in_array( $algo, hash_algos() ) ) {
throw new Scribunto_LuaError( "Unknown hashing algorithm: $algo" );
}
$hash = hash( $algo, $value );
return [ $hash ];
}
}