Command-Line

用於創建包含文件 MD5 雜湊的 torrent 文件的命令工具?

  • April 20, 2021

我知道 mktorrent,並且知道如何使用它,但出於測試目的,我需要一個實用程序,該實用程序還將在 torrent 元資訊中包含 torrent 中每個文件的 MD5 雜湊。我意識到每個文件的 MD5 雜湊通常不與大多數現代種子應用程序一起使用並且是多餘的,但我希望有一個我錯過的實用程序支持這一點。

有什麼建議?

你可以使用這個:https ://py3createtorrent.readthedocs.io/en/latest/

但是您需要為此安裝 python。

“py3createtorrent 是一個用於創建種子(Linux 和 Windows)的綜合 shell/命令行實用程序。它是一個 GPL 許可的 Python v3.1 腳本。我使用 Ubuntu 8.04 / rTorrent 和 Windows 7 / µTorrent 對其進行了測試。”

您可以將該--checksum md5選項與 torrenttools 一起使用。

除 MD5 外,還支持各種其他散列函式。您可以使用 列出可用選項torrenttools --checksum-algorithms

Torrenttools 可以在這裡找到:https ://github.com/fbdtemme/torrenttools

免責聲明:我是這個工具的作者。

引用自:https://unix.stackexchange.com/questions/49220