• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

docs/H28-Aug-2017-697605

package/H28-Aug-2017-122102

src/H03-May-2022-3,3302,395

AUTHORSH A D17-Jun-201343 21

COPYINGH A D17-Jun-201334.3 KiB675553

ChangeLogH A D28-Aug-20171.8 KiB6645

INSTALLH A D17-Jun-201315.2 KiB366284

Makefile.amH A D25-Aug-2017125 42

Makefile.inH A D28-Aug-201722.4 KiB716631

NEWSH A D28-Aug-20171.2 KiB4932

READMEH A D27-Aug-20171.4 KiB4732

aclocal.m4H A D28-Aug-201738.5 KiB1,079970

config.guessH A D28-Aug-201743.8 KiB1,5311,321

config.subH A D28-Aug-201734.7 KiB1,7831,640

configureH A D28-Aug-2017223.8 KiB7,9776,631

configure.acH A D28-Aug-20175.8 KiB130119

depcompH A D28-Aug-201720.4 KiB709460

install-shH A D28-Aug-201713.7 KiB528351

missingH A D28-Aug-201710.1 KiB332243

README

1Short description :
2
3	BtCheck is a bittorrent downloaded data checker and a torrent file
4	content viewer.
5
6
7Long description :
8
9	BtCheck is a free software written by Jean Diraison in 2008-2009.
10	It is covered by version 3 of the GNU General Public License.
11	Btcheck can check downloaded data integrity according to the given
12	torrent and it can also show the informations stored in the torrent
13	file (announce trackers, list of files with their size, torrent
14	hash value, creation date, comments, ...).
15
16
17Requirements :
18
19	BtCheck can use various crypto libraries to speedup hash computation.
20	  + OpenSSL crypto library           [--with-openssl]
21	  + mbedTLS/PolarSSL crypto library  [--with-polarssl]
22	  + GnuTLS library                   [--with-gnutls]
23	  + libgcrypt library                [--with-gcrypt]
24	  + tomcrypt library                 [--with-tomcrypt]
25	  + Nettle library                   [--with-nettle]
26	  + BeeCrypt library                 [--with-beecrypt]
27	On Linux systems the Kernel Crypto API [--with-kercrypt] can be used.
28	On Windows systems the CryptoAPI [--with-wincrypt] can be used too.
29	By default BtCheck will use a slow built-in sha1 implementation.
30
31
32Building howto :
33
34	Use autotools to generate configure and Makefile files:
35
36		aclocal
37		autoconf
38		autoheader
39		automake -a -c
40
41	Then build btcheck executable:
42
43		./configure [--with-xxxxxxxx]
44		make
45		make install
46
47