1md5sum
2
3 SYNOPSIS
4  Compute an MD5 sum for a string
5
6 USAGE
7  String_Type md5sum (BString_Type bstr)
8
9 DESCRIPTION
10  The `md5sum' function computes the MD5 checksum for the
11  specified binary string.  The function returns a string representing
12  the hexadecimal representation of the checksum.
13
14 SEE ALSO
15  md5sum_file, sha1sum
16
17--------------------------------------------------------------
18
19md5sum_file
20
21 SYNOPSIS
22  Compute the MD5 sum for the contents of a file
23
24 USAGE
25  String_Type md5sum_file (String_Type|File_Type f)
26
27 DESCRIPTION
28  The `md5sum_file' computes the MD5 sum on the contents of a
29  file.  The file may either be specified as a string giving the name
30  of the file, or as an open stdio File_Type pointer.  The
31  function returns a string representing the hexadecimal
32  representation of the checksum.
33
34 SEE ALSO
35  md5sum, sha1sum_file, sha1sum
36
37--------------------------------------------------------------
38
39sha1sum
40
41 SYNOPSIS
42  Compute the SHA1 sum for a string
43
44 USAGE
45  String_Type sha1sum (BString_Type bstr)
46
47 DESCRIPTION
48  The `sha1sum' function computes the SHA1 checksum for the
49  specified binary string.  The function returns a string representing
50  the hexadecimal representation of the checksum.
51
52 SEE ALSO
53  sha1sum_file, md5sum
54
55--------------------------------------------------------------
56
57sha1sum_file
58
59 SYNOPSIS
60  Compute the SHA1 sum for the contents of a file
61
62 USAGE
63  String_Type sha1sum_file (String_Type|File_Type f)
64
65 DESCRIPTION
66  The `sha1sum_file' computes the SHA1 sum on the contents of a
67  file.  The file may either be specified as a string giving the name
68  of the file, or as an open stdio File_Type pointer.  The
69  function returns a string representing the hexadecimal
70  representation of the checksum.
71
72 SEE ALSO
73  sha1sum, md5sum_file, md5sum
74
75--------------------------------------------------------------
76