14 lines
186 B
PHP
14 lines
186 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Kernel\String;
|
|
|
|
class Hash
|
|
{
|
|
public static function xxh128(string $value): string
|
|
{
|
|
return hash('xxh128', $value);
|
|
}
|
|
}
|