fallen/longhash

There is no license information available for the latest version (dev-main) of this package.

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

This package is auto-updated.

Last update: 2025-06-05 14:33:36 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);