Files
Sven Steinert f4511b9213 MD Umbau
2026-05-13 11:57:52 +02:00

13 lines
208 B
PHP

<?php
declare(strict_types=1);
namespace KbMarkdownImporter\Import;
final class Checksum
{
public static function content(string $content): string
{
return hash('sha256', $content);
}
}