Files
LaravelSkeletonAPI/app/Kernel/String/Hash.php
2026-01-05 16:33:20 +04:00

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);
}
}