This file is indexed.

/usr/share/slsh/help/chksumfuns.hlp is in slsh 2.3.0-2ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
md5sum

 SYNOPSIS
  Compute an MD5 sum for a string

 USAGE
  String_Type md5sum (BString_Type bstr)

 DESCRIPTION
  The `md5sum' function computes the MD5 checksum for the
  specified binary string.  The function returns a string representing
  the hexadecimal representation of the checksum.

 SEE ALSO
  md5sum_file, sha1sum

--------------------------------------------------------------

md5sum_file

 SYNOPSIS
  Compute the MD5 sum for the contents of a file

 USAGE
  String_Type md5sum_file (String_Type|File_Type f)

 DESCRIPTION
  The `md5sum_file' computes the MD5 sum on the contents of a
  file.  The file may either be specified as a string giving the name
  of the file, or as an open stdio File_Type pointer.  The
  function returns a string representing the hexadecimal
  representation of the checksum.

 SEE ALSO
  md5sum, sha1sum_file, sha1sum

--------------------------------------------------------------

sha1sum

 SYNOPSIS
  Compute the SHA1 sum for a string

 USAGE
  String_Type sha1sum (BString_Type bstr)

 DESCRIPTION
  The `sha1sum' function computes the SHA1 checksum for the
  specified binary string.  The function returns a string representing
  the hexadecimal representation of the checksum.

 SEE ALSO
  sha1sum_file, md5sum

--------------------------------------------------------------

sha1sum_file

 SYNOPSIS
  Compute the SHA1 sum for the contents of a file

 USAGE
  String_Type sha1sum_file (String_Type|File_Type f)

 DESCRIPTION
  The `sha1sum_file' computes the SHA1 sum on the contents of a
  file.  The file may either be specified as a string giving the name
  of the file, or as an open stdio File_Type pointer.  The
  function returns a string representing the hexadecimal
  representation of the checksum.

 SEE ALSO
  sha1sum, md5sum_file, md5sum

--------------------------------------------------------------