aboutsummaryrefslogtreecommitdiffstats
path: root/libsha1_hmac_unmarshal.3
diff options
context:
space:
mode:
Diffstat (limited to 'libsha1_hmac_unmarshal.3')
-rw-r--r--libsha1_hmac_unmarshal.354
1 files changed, 54 insertions, 0 deletions
diff --git a/libsha1_hmac_unmarshal.3 b/libsha1_hmac_unmarshal.3
new file mode 100644
index 0000000..a21e462
--- /dev/null
+++ b/libsha1_hmac_unmarshal.3
@@ -0,0 +1,54 @@
+.TH LIBSHA1_HMAC_UNMARSHAL 3 2019-02-10 libsha1
+.SH NAME
+libsha1_hmac_unmarshal \- Unmarshal an HMAC-SHA 1/0 hashing state
+.SH SYNOPSIS
+.nf
+#include <libsha1.h>
+
+size_t libsha1_hmac_unmarshal(struct libsha1_hmac_state *restrict \fIstate\fP, const void *restrict \fIbuf\fP, size_t \fIbufsize\fP);
+.fi
+.PP
+Link with
+.IR \-lsha1 .
+.SH DESCRIPTION
+The
+.BR libsha1_hmac_unmarshal ()
+function unmarshal
+.I state
+from the buffer
+.IR buf .
+.I bufsize
+shall be the maximum number of bytes the
+function may read from
+.IR buf .
+.SH RETURN VALUE
+The
+.BR libsha1_hmac_unmarshal ()
+function returns the number of unmarshalled
+bytes (this number is always positive) upon
+successful completion, otherwise 0 is returned.
+.SH ERRORS
+The
+.BR libsha1_hmac_unmarshal ()
+function will fail if:
+.TP
+.B EINVAL
+.I bufsize
+is too small or the contents of
+.I buf
+is invalid or created with an incompatible
+version of the library.
+.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_hmac_marshal (3)