PHP SHA3 functionality(PHP SHA3 功能)
问题描述
是否有允许我使用 SHA3-512 的框架或函数?我不想要像 Strawbrary
Is there a framework or function that allows me to use SHA3-512? I don't want a extension like Strawbrary
推荐答案
有可能.
也许为时已晚,但我已经在这里进行了pure-PHP 实现
一个>:
Maybe too late, but I've worked on a pure-PHP
implementation here:
- SHA3-224/256/384/512
- SHAKE128/256(任意输出大小)
LGPL 3+
- 在
PHP 5.2+
中工作(在较旧的PHP
上慢得多) - 无需扩展.
- 经过中等程度的测试.
- 基于
C
中的(公共领域)参考实现. - 任意输入大小.
- SHA3-224/256/384/512
- SHAKE128/256 (arbitrary output size)
LGPL 3+
- Works in
PHP 5.2+
(considerably slower on olderPHP
) - No extensions required.
- Moderately well tested.
- Based on the (public domain) reference implementation in
C
. - Arbitrary input size.
它是在 PHP
中简单快速的实现(这意味着 远比 C 慢).由于这纯粹是受 CPU 限制",PHP 7.0
的运行速度比 PHP 5.6
快 4 倍.(此处为 55kB/s)
It is a simple and fast implementation in PHP
(which means far slower than C). Since this is purely "CPU-bound", PHP 7.0
runs 4x faster than PHP 5.6
. (55kB/s here)
输入很小就可以了.正确处理大量输入,只占用 CPU
几分钟.
Fine with a small input. Correctly handles a huge input, just hogs CPU
for minutes.
希望能帮到你.
这篇关于PHP SHA3 功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP SHA3 功能
基础教程推荐
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01
- 使用 PDO 转义列名 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- HTTP 与 FTP 上传 2021-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01