diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-07-05 07:07:27 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-07-05 07:07:27 +0000 |
commit | 35f4343fa4d8406303456ca0d5405f7b1ca8962f (patch) | |
tree | dd39d1c10f6d5c13418c05d061562a8bac1c8707 /security/py-fchksum/pkg-descr | |
parent | e5e4e1c40b3884683ad83f3c917b90e782c9ed26 (diff) | |
download | ports-35f4343fa4d8406303456ca0d5405f7b1ca8962f.tar.gz ports-35f4343fa4d8406303456ca0d5405f7b1ca8962f.zip |
Notes
Diffstat (limited to 'security/py-fchksum/pkg-descr')
-rw-r--r-- | security/py-fchksum/pkg-descr | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/security/py-fchksum/pkg-descr b/security/py-fchksum/pkg-descr new file mode 100644 index 000000000000..544057e88693 --- /dev/null +++ b/security/py-fchksum/pkg-descr @@ -0,0 +1,10 @@ +fchksum is a Python module to find the checksum of files. Currently it +supports crc32 and md5 checksums. + +The advantage of using fchksum over the python md5 and zlib(.crc32) modules +is both ease of use and speed. You only need to tell it the filename and the +actual work is done by C code. Compared to the implementing a read loop in +python with the standard python modules, fchksum is approximatly 2.0x faster +in md5 and 1.1x faster in crc32. + +WWW: http://www.azstarnet.com/~donut/programs/fchksum.html |