From fb8009529af7055afbbc678153270d743bb8874a Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Wed, 7 Oct 2015 01:45:41 +0200 Subject: add libkeccak_fast_update.3 and libkeccak_update.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- doc/man/libkeccak_fast_update.3 | 50 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 doc/man/libkeccak_fast_update.3 (limited to 'doc/man/libkeccak_fast_update.3') diff --git a/doc/man/libkeccak_fast_update.3 b/doc/man/libkeccak_fast_update.3 new file mode 100644 index 0000000..fb52f45 --- /dev/null +++ b/doc/man/libkeccak_fast_update.3 @@ -0,0 +1,50 @@ +.TH LIBKECCAK_FAST_UPDATE 3 LIBKECCAK-%VERSION% +.SH NAME +libkeccak_fast_update - Partially hash a message without erasure +.SH SYNOPSIS +.LP +.nf +#include +.P +int libkeccak_fast_update(libkeccak_state_t *\fIstate\fP, const char *\fImsg\fP, size_t \fImsglen\fP); +.fi +.P +Link with \fI-lkeccak\fP. +.SH DESCRIPTION +The +.BR libkeccak_fast_update () +function continues (or starts) hashing a message. +The current state of the hashing is stored in \fI*state\fP, +and will be updated. The message specified by the \fImsg\fP +parameter with the byte-size specified by the \fImsglen\fP +parameter, will be hashed. +.PP +The +.BR libkeccak_fast_update () +function may reallocate the state's message chunk buffer. +When doing so, it attempts to do so as quickly as possible, +rather than ensuring that the information in the old +allocation is securely removed if a new allocation is required. +.SH RETURN VALUES +The +.BR libkeccak_fast_update () +function returns 0 upon successful completion. On error, +-1 is returned and \fIerrno\fP is set to describe the error. +.SH ERRORS +The +.BR libkeccak_fast_update () +function may fail for any reason specified by the function +.BR realloc (3). +.SH Notes +Neither parameter by be \fINULL\fP or 0. +.SH SEE ALSO +.BR libkeccak_state_initialise (3), +.BR libkeccak_update (3), +.BR libkeccak_fast_digest (3), +.BR libkeccak_digest (3) +.SH AUTHORS +Principal author, Mattias Andrée. See the LICENSE file for the full +list of authors. +.SH BUGS +Please report bugs to https://github.com/maandree/libkeccak/issues or to +maandree@member.fsf.org -- cgit v1.2.3-70-g09d2