文字配列 (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 表現が必要です。ありがとう!!!