mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-11-15 11:59:42 +00:00
55bd9d22bb
Change-Id: I2efe0f71266d70e9a41e044406d82ef7daa31296
46 lines
896 B
PHP
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 ];
|
|
}
|
|
|
|
}
|