- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
RFC6455 指定了根据 Sec-WebSocket-Key header 的值计算 Sec-WebSocket-Accept 响应 header 的方法。此方法基于 SHA-1 散列并对结果进行 Base64 编码。
如何使用 libtomcrypt 在纯 C 中实现此方法对于 SHA-1 和 Base64?
注意:这个问题故意不表现出任何努力,因为我自己立即回答了它。请参阅下面我的努力。
最佳答案
这是一个完整的可编译示例,仅使用 libtomcrypt,无需任何动态内存分配,并成功计算 RFC6455 中的引用示例:
//This file is licensed under CC0 1.0 Universal (public domain)
//Compile like this: gcc -o wsencodetest wsencodetest.c -ltomcrypt
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <ctype.h>
#include <tomcrypt.h>
#define SHA1_HASHSIZE 20
//Magic GUID as defined in RFC6455 section 1.3
static const char magicGUID[] = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11";
/**
* Compute the value of the Sec-WebSocket-Accept response header
* from the value of the Sec-WebSocket-Key header.
* @param key The whitespace or NUL terminated Sec-WebSocket-Key value
* @param out Where to store the base64-encoded output. Must provide 29 bytes of memory.
* The 29 bytes starting at out contain the resulting value (plus a terminating NUL byte)
*/
void computeWebsocketSecAccept(const char* key, char* dst) {
/**
* Determine start & length of key minus leading/trailing whitespace
* See RFC6455 section 1.3
*/
//Skip leading whitespace
while(isspace(*key)) {
key++;
}
//Determine key size.
size_t keySize = 0;
while(!isspace(key[keySize]) && key[keySize] != 0) {
keySize++;
}
//Compute SHA1 hash. See RFC6455 section 1.3
char hashOut[SHA1_HASHSIZE];
hash_state md;
sha1_desc.init(&md);
sha1_desc.process(&md, key, keySize);
sha1_desc.process(&md, magicGUID, sizeof(magicGUID));
sha1_desc.done(&md, hashOut);
//Encode hash to output buffer
size_t outlen = 29; //We know the output is 28 in size
base64_encode(hashOut, SHA1_HASHSIZE, dst, &outlen);
}
/**
* Usage example
*/
int main(int argc, char** argv) {
//Whitespace needs to be removed according to RFC6455
//Example from RFC6455
const char* key = " dGhlIHNhbXBsZSBub25jZQ== ";
char buf[29];
//Perform computation
computeWebsocketSecAccept(key, buf);
//Should print s3pPLMBiTxaQ9kYGzzhZRbK+xOo=
printf("%s\n", buf);
}
关于使用 libtomcrypt 计算 websocket Sec-WebSocket-Accept 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29311791/
我想通过创建类似基准的文件来比较 Windows 和 Ubuntu 中 libtomcrypt 的 AES 算法性能,但我在编码时遇到了错误。请帮我。以下是我的比较文件: 比较.c: `#includ
我想在 C# 中使用 libtomcrypt 工具包进行加密解密。我不熟悉 C,所以请帮帮我。该工具包的链接:http://www.libtom.org/?page=features&newsitem
我在一个项目中使用 libtomcrypt,特别是使用 RSA 对一些数据进行散列和签名。由于内存需求,我想切换到 mbedtls。但是,我在尝试使用 mbedtls 验证 libtomcrypt 生
我正在用 C++ 使用 libtomcrypt C 库为其 RSA 和 SPRNG 函数编写一个安全的即时消息传递程序。我将 libtomcrypt 编译为静态库,我已经能够链接到它并运行 sprng
LibTomCrypt在过去,它似乎是一种非常可行且有用的加密选项。以及相关的LibTomMath可能是一个有用的数学库。但是最近,我看不到它有任何发展,而且对于它的“当前”网站是什么也不清楚。例如:
我正在尝试使用 libtomcrypt 运行示例 rsa/dsa 代码。 我首先通过 make install 安装了 LibTomMath,结果创建了以下文件。 /usr/lib/libtomm
我正在尝试使用 libtomcrypt 进行 RSA-2048 位加密。我当前的目标是从文件导入公钥。此文件是使用 OpenSSL 和以下命令生成的: $ openssl rsa -in privat
使用整个 LibTomCrypt 源代码,我用 Visual Studio 2010 构建了一个库文件,编译没有问题。但是,在创建一个将 TomCrypt 库链接起来的简单测试控制台应用程序时,我收到
我正在尝试使用 nacplorts lib libtomcrypt 编译 nexe 文件。构建 nexe 它返回一堆“未定义”错误。我试过用不同的标志 build 但没有。也许有人可以指出我做错了什么
我已经下载了 libtomcrypt API,想对 AES 算法进行基准测试。我所做的是创建一个源文件并包含 tomcrypt.h header 。然后我写了测试加密功能的代码——“rijndael_
RFC6455 指定了根据 Sec-WebSocket-Key header 的值计算 Sec-WebSocket-Accept 响应 header 的方法。此方法基于 SHA-1 散列并对结果进行
我是一名 C# 开发人员,在引用和依赖项方面被宠坏了。我现在正在使用 Visual C++(Visual Studio 2017)开发一个小项目,我想在其中使用 libtomcrypt and lib
我正在 CONTIKI 操作系统和 COOJA 模拟器中进行加密,我厌倦了使用库 libtomcrypt。我将库包含到 CONTIKI 文件夹中,但是当我厌倦调用 rsa_make_key 函数时,它
我正在尝试使用 libtomcrypt 库为我的学校项目生成 RSA 公钥。但是我无法使用 Contiki OS 在 Cooja 中加载库。 我试图将我需要的文件编译成目标文件并将其加载到.csc 文
我是一名优秀的程序员,十分优秀!