Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Extract the hash from Torrent File in ruby

I was hoping to extract the hash identifier for a torrent file.

Particularly, I'm looking for the same hash that shows up in Transmission/uTorrent upon opening up a torrent info dialogue (It looks like this: 7b435a6f051dec092a6ee440d793bfed6696cfa1)

I think that it's the SHA1 hash from the info dictionary on the torrent file. If I were to parse over the binary file data from one byte to another byte, then perform a SHA1 hash encryption I could get it.

Does anyone have a better understanding or have some code that could do this?

like image 805
user748082 Avatar asked Jun 27 '11 05:06

user748082


2 Answers

Using the bencode gem:

require 'bencode'
require 'digest/sha1'

meta = BEncode.load_file(file) # File or file path
info_hash = Digest::SHA1.hexdigest(meta["info"].bencode)
like image 187
Jorge Israel Peña Avatar answered Sep 23 '22 15:09

Jorge Israel Peña


You could try RubyTorrent, there is an example of how to dump meta data from a .torrent file here: https://github.com/dydx/RubyTorrent/blob/master/dump-metainfo.rb

There is also a bencode gem that can be used to parse .torrent files.

like image 43
Theo Avatar answered Sep 24 '22 15:09

Theo