aboutsummaryrefslogtreecommitdiffstats
path: root/libkeccak_zerocopy_chunksize.3
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-09-15 00:47:51 +0200
committerMattias Andrée <maandree@kth.se>2024-09-15 00:47:51 +0200
commitf14ba70de62cbd47e074756b1f1aec1f3b77a02d (patch)
tree4b4c27260816f553b7a1fe54153c06b122160ffc /libkeccak_zerocopy_chunksize.3
parentSplit libkeccak.h and fix support for architectures that do not allow misaligned memory (diff)
downloadlibkeccak-f14ba70de62cbd47e074756b1f1aec1f3b77a02d.tar.gz
libkeccak-f14ba70de62cbd47e074756b1f1aec1f3b77a02d.tar.bz2
libkeccak-f14ba70de62cbd47e074756b1f1aec1f3b77a02d.tar.xz
Move man pages into man3/ and man7/
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libkeccak_zerocopy_chunksize.3')
-rw-r--r--libkeccak_zerocopy_chunksize.340
1 files changed, 0 insertions, 40 deletions
diff --git a/libkeccak_zerocopy_chunksize.3 b/libkeccak_zerocopy_chunksize.3
deleted file mode 100644
index b507c7f..0000000
--- a/libkeccak_zerocopy_chunksize.3
+++ /dev/null
@@ -1,40 +0,0 @@
-.TH LIBKECCAK_ZEROCOPY_CHUNKSIZE 3 LIBKECCAK
-.SH NAME
-libkeccak_zerocopy_chunksize - Get chunk size for zero-copy processing
-.RB ( ADVANCED )
-.SH SYNOPSIS
-.nf
-#include <libkeccak.h>
-
-size_t libkeccak_zerocopy_chunksize(struct libkeccak_state *\fIstate\fP);
-.fi
-.PP
-Link with
-.IR -lkeccak .
-.SH DESCRIPTION
-The
-.BR libkeccak_zerocopy_chunksize ()
-function returns the number of bytes the sponge
-in the
-.I state
-parameter processes per round. Input to the
-.BR libkeccak_zerocopy_update (3)
-function must be an integer multiple of this
-number, and memory allocated for the
-.BR libkeccak_zerocopy_digest (3)
-function must also be a multiple of this
-number (further restrictions apply, see
-.BR libkeccak_zerocopy_digest (3)
-for more details.)
-.SH RETURN VALUES
-The
-.BR libkeccak_zerocopy_chunksize ()
-function returns the number of bytes that
-the sponge processes per processing round.
-.SH ERRORS
-The
-.BR libkeccak_zerocopy_chunksize ()
-function cannot fail.
-.SH SEE ALSO
-.BR libkeccak_zerocopy_update (3),
-.BR libkeccak_zerocopy_digest (3)