尝试采用字符 Arracy(C 的新功能)并将其编码为 SHA1。
以下代码不起作用。作为它的返回 '\x10'
char encode[1000];
strcpy(encode, "GET\n\n\n");
strcat(encode, tim);
strcat(encode, "\n");
strcat(encode, uri);
size_t length = sizeof(encode);
unsigned char hash[SHA_DIGEST_LENGTH];
SHA1(encode, length, hash);
return hash;
归根结底,我想要一个哈希的 base64 表示。谢谢!!!