汇付SDK
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.
hfpay-lib/src/library/ISigner.php

12 lines
189 B

<?php
namespace Tansilu\HfPayLib\library;
interface ISigner
{
function sign(array $data): string;
function verify(array $data): bool;
function decode(string $data): array;
}