limb-php/poly1305
Composer 安装命令:
composer require limb-php/poly1305
包简介
Pure PHP implementations of the Poly1305 MAC algorithm.
README 文档
README
This library contains a pure PHP implementations of the Poly1305 algorithm.
- The GMP based implementation requires the GMP extension and PHP 5.6 or above.
- The GMPLegacy based implementation requires the GMP extension and PHP 5.4 or above.
- The Native implementation requires PHP 5.4 or above with 64 bit integers.
The above implementations are listed in order of performance.
For those who want a C-based extension, it lives in it's own repository: Poly1305 PHP extension.
Usage:
You can generate and verify MACs with the one-shot functions authenticate and verify available in the Poly1305 namespace.
Generate a MAC using a 256-bit unique key
$mac = Poly1305\authenticate($key, $message);
Verify the authenticity using the MAC for that key / message combination
$valid = Poly1305\verify($mac, $key, $message);
Remember that a key must not be used more than once
You can also use the Authenticator class directly. This is more useful if you are streaming messages and want to generate the MAC as you go.
$auth = new Poly1305\Authenticator; // Context preserves state between updates $ctx = $auth->init($key); while($messageChunk = getChunk()) { $auth->update($ctx, $messageChunk); } $mac = $poly1305->finish($ctx);
Poly1305-AES
This extension can be used to compute Poly1305-AES MACs and includes optimised AES functions specifically for this purpose.
If you have the OpenSSL extension installed this will be used instead. MCrypt is around 2x slower than the bundled native implementation, as well as being unmaintained, and is not supported here.
To use Poly1305-AES you need three 128-bit strings, instead of the usual 256-bit key.
$r = '0123456789012345'; // "static" portion of Poly1305 key $k = '0123456789012345'; // AES key $n = '0123456789012345'; // Nonce
The key is now formed by calculating $r . aes($k, $n), allowing $k and $r to remain unchanged as long as a unique $n is used for each message.
The native implementation has two ways to generate aes($k, $n) optimised for different secnarios. The OpenSSL version provides the same methods, but is not optimised (it is still faster than native though).
If you're only going to perform one AES operation in the lifetime of your script (i.e. during a web request) then the optimised solution is to use the one-shot kn(k, n) method.
$aes = new Poly1305\AES(); $key = $r . $aes->kn($k, $n); $mac = Poly1305\auth($key, $message);
If you have a long running script that will perform many AES operations with incremental or random nonces, then the optimised solution is to use the separate k() and n() methods. Calling k() caches the processed key so that it can be used again.
$aes = new Poly1305\AES(); $aes->k($k); $key = $r . $aes->n($n); $mac = Poly1305\auth($key, $message); // change nonce $key = $r . $aes->n($n); $mac = Poly1305\auth($key, $message);
limb-php/poly1305 适用场景与选型建议
limb-php/poly1305 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 03 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「security」 「Authentication」 「encryption」 「aes」 「authenticator」 「MAC」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 limb-php/poly1305 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 limb-php/poly1305 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 limb-php/poly1305 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Automatically logs-in users if they are already authenticated by a remote source. (e.g. environment variable REMOTE_USER)
GraphQL authentication for your headless Craft CMS applications.
A simple PHP class to encrypt a string and decrypt an encrypted string
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
Provide a way to secure accesses to all routes of an symfony application.
Encryption with AES-256 and HMAC-SHA256
统计信息
- 总下载量: 1
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 34
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-03