feat: admin login
This commit is contained in:
20
app/Lib/Crypto/CryptoInterface.php
Normal file
20
app/Lib/Crypto/CryptoInterface.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?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();
|
||||
}
|
||||
Reference in New Issue
Block a user