Crypto Tools for PHP 8
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
666 B

<?php
declare(strict_types=1);
namespace Kvazar\Crypto;
class Hash
{
public static function sha256(string $data, $raw = true): string
{
return hash(
'sha256',
$data,
$raw
);
}
public static function sha256d(string $data): string
{
return hash(
'sha256',
hash(
'sha256',
$data,
true
),
true
);
}
public static function ripemd160(string $data, $raw = true): string
{
return hash(
'ripemd160',
$data,
$raw
);
}
}