20 lines
278 B
PHP
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();
|
|
} |