summaryrefslogtreecommitdiffstats
path: root/doc/man7/EVP_MAC-Siphash.pod
diff options
context:
space:
mode:
authorPauli <ppzgs1@gmail.com>2021-02-25 09:52:26 +1000
committerPauli <ppzgs1@gmail.com>2021-02-28 17:25:48 +1000
commitae7d90a1594dabf72123f395f9f2436452ab5d9a (patch)
treef625489fa5173e2cd166d7fda37138ecb754c6f7 /doc/man7/EVP_MAC-Siphash.pod
parent1d73e2adae9c80d359d6d85c9f65d97a86add542 (diff)
siphash: Add the C and D round parameters for SipHash.
This represents a gap in functionality from the low level APIs. Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/14310)
Diffstat (limited to 'doc/man7/EVP_MAC-Siphash.pod')
-rw-r--r--doc/man7/EVP_MAC-Siphash.pod8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/man7/EVP_MAC-Siphash.pod b/doc/man7/EVP_MAC-Siphash.pod
index d0a4226ae5..2b6f2ae4e4 100644
--- a/doc/man7/EVP_MAC-Siphash.pod
+++ b/doc/man7/EVP_MAC-Siphash.pod
@@ -36,6 +36,14 @@ The length of the "size" parameter should not exceed that of a B<size_t>.
=item "size" (B<OSSL_MAC_PARAM_SIZE>) <unsigned integer>
+=item "c-rounds" (B<OSSL_MAC_PARAM_C_ROUNDS>) <unsigned integer>
+
+Specifies the number of rounds per message block. By default this is I<2>.
+
+=item "d-rounds" (B<OSSL_MAC_PARAM_D_ROUNDS>) <unsigned integer>
+
+Specifies the number of finalisation rounds. By default this is I<4>.
+
=back
=head1 SEE ALSO