mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Scribunto
synced 2024-12-01 03:16:14 +00:00
1eecdac6de
Change-Id: I6d730d67decc859fd130fee5ec92b1cfb8d9ef64
48 lines
920 B
PHP
48 lines
920 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Scribunto\Engines\LuaCommon;
|
|
|
|
class HashLibrary extends LibraryBase {
|
|
|
|
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 LuaError( "Unknown hashing algorithm: $algo" );
|
|
}
|
|
|
|
$hash = hash( $algo, $value );
|
|
|
|
return [ $hash ];
|
|
}
|
|
|
|
}
|