I'm using Altap Salamander v2.51 (registered).
The output format of the Plugins->Checksum->Calculate CRC/MD5 Checksums... cannot be verified by a Linux md5sum tool. The problem appears to be a difference in the formatting of the .md5 files.
Altap Salamander output contains lines that look like this:
f0d74f9d1685da0e5f15af64569ed57b test.bin
Note that there is only a single space between the hash and the filename.
The GNU version of md5sum outputs lines that look like this in text read mode:
f0d74f9d1685da0e5f15af64569ed57b test.bin
and like this in binary read mode:
f0d74f9d1685da0e5f15af64569ed57b *test.bin
In the GNU version, the format is:
<128bit checksum><space><binary-flag><filename>
where <binary-flag> is either <space> (text mode default) or * (binary mode -b option).
The MD5 hashes themselves match correctly between the two tools.
MD5 output format problem
-
- ALTAP Staff
- Posts: 5231
- Joined: 08 Dec 2005, 06:34
- Location: Novy Bor, Czech Republic
- Contact:
The problem is in two spaces that md5sum requires. We should probably also insert the * mark.
Last edited by Jan Rysavy on 24 Aug 2008, 06:29, edited 1 time in total.
-
- ALTAP Staff
- Posts: 5231
- Joined: 08 Dec 2005, 06:34
- Location: Novy Bor, Czech Republic
- Contact:
Our Checksum plugin can read md5sum outpout without problem (variable number of spaces, '*' flag, UNIX end of lines).
Problem is on md5sum side. We will support it in next update of Checksum plugin. There are other requests on this forum (support for more hash functions, non-modal Calculate window, etc).
Problem is on md5sum side. We will support it in next update of Checksum plugin. There are other requests on this forum (support for more hash functions, non-modal Calculate window, etc).
-
- Plugin Developer
- Posts: 707
- Joined: 08 Dec 2005, 14:33
- Location: Prague, Czech Republic
- Contact:
Re: MD5 output format problem
Since the next version of Altap Salamander (2.52), two spaces will be written between the checksum and filename.2GKUN4 wrote:In the GNU version, the format of MD5 files is:
<128bit checksum><space><binary-flag><filename>
where <binary-flag> is either <space> (text mode default) or * (binary mode -b option).