Files
hyperf_service/app/Lib/Crypto/CryptoInterface.php
2024-10-27 00:34:45 +08:00

20 lines
278 B
PHP

<?php
/**
* This lib file is part of item.
*
* @author ctexthuang
* @contact ctexthuang@qq.com
*/
declare(strict_types=1);
namespace App\Lib\Crypto;
/**
* 加密类接口
*/
interface CryptoInterface
{
public function encrypt();
public function decrypt();
}