first commit

This commit is contained in:
2024-04-01 09:54:43 +08:00
commit 899d816bc3
795 changed files with 130040 additions and 0 deletions

22
lib/Auth/Encryptor.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
namespace Yeepay\Yop\Sdk\Auth;
use Yeepay\Yop\Sdk\Internal\Request;
interface Encryptor
{
/**
* @param $request
* @return mixed
*/
public function encrypt(Request $request);
/**
* @param $content
* @return mixed
*/
public function decrypt($content);
}