C++是什么?相当于 PHP 的 hash_hmac 函数?

发布于 2024-12-05 02:48:04 字数 439 浏览 1 评论 0原文

我正在将 PHP 应用程序移植到 C++。 PHP 应用程序正在使用此函数:

hash_hmac — 使用 HMAC 方法生成带密钥的哈希值

如果我有这段代码,它实际上在做什么?

$sStr = hash_hmac ('sha256', $mydata,$mykey, $raw = true)

我知道它使用 sha256 和我的密钥加密一些数据,但如何在 C++ 中执行此操作?

我找到了 hmacsha2 库,但不确定它们是否是我需要的。

I'm porting a PHP application to C++. The PHP application is using this function:

hash_hmac — Generate a keyed hash value using the HMAC method

If I have this code, what is it actually doing?

$sStr = hash_hmac ('sha256', $mydata,$mykey, $raw = true)

I know it encrypts some data using sha256 and my key, but how can I perform this in C++?

I've found the hmac and sha2 libraries, but am not sure if they are what I need.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只是偏爱你 2024-12-12 02:48:04

我会考虑研究 OpenSSL,一个可移植且完整的加密库(尽管它的名字如此,但它不仅仅是执行 SSL)。它有一个 HMAC 库,您肯定可以包装它以获得类似的功能。

以下是有关如何使用 OpenSSL 的 HMAC 库的示例,取自StackOverflow 上的另一个问题 (我的注释):

  // Initialize HMAC object.
HMAC_CTX ctx;
HMAC_CTX_init(&ctx);

  // Set HMAC key.
HMAC_Init_ex(&ctx, key, 16, EVP_sha256(), NULL);

  // May be called repeatedly to insert all your data.
HMAC_Update(&ctx, data, 8);

  // Finish HMAC computation and fetch result.
HMAC_Final(&ctx, result, &result_len);

  // Done with HMAC object.
HMAC_CTX_cleanup(&ctx);

I would consider looking into OpenSSL, a portable and complete cryptographic library (despite its name, it doesn't just do SSL). It has an HMAC library which you can surely wrap to get similar function.

Here's an example on how to use OpenSSL' HMAC library, taken from another question on StackOverflow (annotations mine):

  // Initialize HMAC object.
HMAC_CTX ctx;
HMAC_CTX_init(&ctx);

  // Set HMAC key.
HMAC_Init_ex(&ctx, key, 16, EVP_sha256(), NULL);

  // May be called repeatedly to insert all your data.
HMAC_Update(&ctx, data, 8);

  // Finish HMAC computation and fetch result.
HMAC_Final(&ctx, result, &result_len);

  // Done with HMAC object.
HMAC_CTX_cleanup(&ctx);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文