fallen/longhash

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

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/fallen/longhash

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

This package is auto-updated.

Last update: 2025-12-05 15:39:33 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);