diff options
author | Mattias Andrée <maandree@kth.se> | 2019-02-09 20:02:16 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2019-02-09 20:02:16 +0100 |
commit | 9475c19921162986119ee69eba8bfa2a9832d551 (patch) | |
tree | 285c9cbd0a824d2bfb480431b33099e2a80e35bf /libsha2_unhex.3 | |
parent | Add HMAC to TODO (diff) | |
download | libsha2-9475c19921162986119ee69eba8bfa2a9832d551.tar.gz libsha2-9475c19921162986119ee69eba8bfa2a9832d551.tar.bz2 libsha2-9475c19921162986119ee69eba8bfa2a9832d551.tar.xz |
Minor changes, add man pages, rename libsha2_state_initialise to libsha2_init
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libsha2_unhex.3')
-rw-r--r-- | libsha2_unhex.3 | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/libsha2_unhex.3 b/libsha2_unhex.3 new file mode 100644 index 0000000..c1f7865 --- /dev/null +++ b/libsha2_unhex.3 @@ -0,0 +1,48 @@ +.TH LIBSHA2_UNHEX 3 2019-02-09 libjson +.SH NAME +libsha2_unhex \- Covert hexadecimal to binary +.SH SYNOPSIS +.nf +#include <libsha2.h> + +void libsha2_unhex(char *restrict \fIoutput\fP, const char *restrict \fIhashsum\fP); +.fi +.PP +Link with +.IR \-lsha2 . +.SH DESCRIPTION +The +.BR libsha2_unhex () +function converts the content of the string +.I hashsum +to binary and stores the result in +.IR output . +.PP +The user must make sure that +.I hashsum +is a NUL terminated string with an even number of characters +and each character is a hexadecimal digit (both lower case +and upper case, including mixing, is allowed). The output will +be half the length of this string, and the user must make sure +that +.I output +is at least this size. +.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 libsha2_behex_lower (3), +.BR libsha2_behex_upper (3) |