manueldimmler/hmac-signature-middleware
最新稳定版本:v0.1.1
Composer 安装命令:
composer require manueldimmler/hmac-signature-middleware
包简介
Two PSR-15 middlewares to create and verify HMAC signatures
README 文档
README
This package provides two PSR-15 middlewares.
The first middleware creates a signature of the payload. A secret key has to be provided as first argument. By default, SHA1 hashing algorithm is used and the HMAC signature will be added as x-signature header.
$signatureMiddleware = new Http\Middleware\HmacSignatureMiddleware('secret key'):
To validate the signature, use the verification middleware.
/** @var \Psr\Http\Message\ResponseFactoryInterface $responseFactory */ $signatureMiddleware = new Http\Middleware\HmacVerificationMiddleware('secret key', $responseFactory):
What's a HMAC
A HMAC is a hash-based message authentication code using a symmetric key.
If a user sees a message and a HMAC and knows the associated secret key, he can verify that the HMAC was produced by a principal that knows the key by doing the HMAC computation hisself. Therefore, if a message comes with a correct HMAC attached, it means this message was seen by a holder of the secret key at some point.
Installation
composer require manueldimmler/hmac-signature-middleware
统计信息
- 总下载量: 8
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-07-13