mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-20 05:44:52 +08:00
9 lines
226 B
PHP
9 lines
226 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
assert(function_exists('gmssl_rand_bytes'));
|
|
assert(function_exists('gmssl_sm3'));
|
|
|
|
assert(bin2hex(gmssl_sm3('123456')) === '207cf410532f92a47dee245ce9b11ff71f578ebd763eb3bbea44ebd043d018fb');
|