如何在 torrent 文件上生成 torrent 哈希信息。
我一直在看这个例子:How to calculate the hash of a torrent using Java and am trying to convert it to C++。这是我到目前为止的代码:
void At::ReadTorrent::TorrentParser::create_hash(std::string torrentstub)
{
std::string info;
int counter = 0;
while(info.find("4:info") == -1)
{
info.push_back(torrentstub[counter]);
counter++;
}
unsigned char array[torrentstub.size()];
int test = 0;
for(int data; (data = torrentstub[counter]) > -1;)
{
array[test++] = data;
counter++;
}
std::cout << array << std::endl;
//SHA-1 some value here to generate the hash.
}
torrentstub
参数是表示为字符串的 torrent 文件。据我了解,我必须获得之后的信息4:info
。我认为这行得通,例如:
d6:lengthi2847431620e4:name8:filename12:piece lengthi1143252e6:pieces50264
在此之后只有我无法读取的信息,我猜这是一些二进制数据?
所以我的问题实际上归结为:应该散列的信息是后面的所有内容,4:info
我应该在哪里停止收集散列数据?