php-stream-filter-hash:通过散列函数流式过滤管道数据

时间:2024-07-10 20:41:47
【文件属性】:

文件名称:php-stream-filter-hash:通过散列函数流式过滤管道数据

文件大小:7KB

文件格式:ZIP

更新时间:2024-07-10 20:41:47

PHP

安装 通过: $ composer require bantu/stream-filter-hash 用法 使用HashFilter::appendToWriteStream($stream, $params)计算写入$stream的所有内容的校验和。 $params参数必须是一个数组,指定要通过algo数组键(例如md5或sha256 )使用的哈希算法。 此外, $params要么需要通过callback数组键传递回调,要么需要使用stream数组键传递输出流。 使用 Stream 的示例 创建一个output.txt.sha256文件,其中包含您写入output.txt的所有内容的校验和。 require 'vendor/autoload.php' ; $ dest = fopen ( 'output.txt' , 'w+b' ); $ hash = fopen ( 'outpu


【文件预览】:
php-stream-filter-hash-master
----composer.json(567B)
----.travis.yml(458B)
----.scrutinizer.yml(185B)
----tests()
--------HashFilterTest.php(4KB)
----LICENSE(1KB)
----src()
--------HashFilter.php(4KB)
----.gitignore(38B)
----phpunit.xml.dist(361B)
----README.md(2KB)

网友评论