aboutsummaryrefslogtreecommitdiffstats
path: root/libsha1_behex_lower.3
blob: 1d365c925d5260f59ecf38d6078baa8ab3e51b7d (plain) (blame)
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
.TH LIBSHA1_BEHEX_LOWER 3 2019-02-10 libsha1
.SH NAME
libsha1_behex_lower \- Convert binary to lower case hexadecimal
.SH SYNOPSIS
.nf
#include <libsha1.h>

void libsha1_behex_lower(char *restrict \fIoutput\fP, const void *restrict \fIhashsum\fP, size_t \fIn\fP);
.fi
.PP
Link with
.IR \-lsha1 .
.SH DESCRIPTION
The
.BR libsha1_behex_lower ()
function converts the
.I n
first bytes of
.I hashsum
to lower case hexadecimal, as exactly
.I 2*n
characters, and stores the result, with
NUL byte termination, to
.IR output .
.PP
The user must make sure that
.I output
is at least
.I 2*n+1
bytes large.
.SH RETURN VALUE
None.
.SH ERRORS
None.
.SH EXAMPLES
None.
.SH APPLICATION USAGE
None.
.SH RATIONALE
None.
.SH FUTURE DIRECTIONS
None.
.SH NOTES
None.
.SH BUGS
None.
.SH SEE ALSO
.BR libsha1_behex_upper (3),
.BR libsha1_unhex (3)