fallen/longhash

此包的最新版本(dev-main)没有可用的许可信息。

dev-main 2022-07-04 03:06 UTC

This package is auto-updated.

Last update: 2024-09-05 12:51:58 UTC


README

## 功能介绍 对长文本内容使用关键词进行加密/解密

## 安装 composer require fallen/longhash

## 使用范例

require '../vendor/autoload.php';

$content = "test";

$hashTool = new \Fallen\Longhash\HashTool("longhash");

$encodeText = $hashTool->encode($content);

$decodeText = $hashTool->decode($encodeText);