diff options
author | Bagas Sanjaya <bagasdotme@gmail.com> | 2022-04-17 09:50:58 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2022-04-25 17:26:40 +0200 |
commit | 2fbfeb4fa61684955980b99603c29d2002a67118 (patch) | |
tree | 39db1cc3b5ae194bc33cda4d0e6fec0c7575bd22 /Documentation/security/siphash.rst | |
parent | Documentation: siphash: convert danger note to warning for HalfSipHash (diff) | |
download | linux-2fbfeb4fa61684955980b99603c29d2002a67118.tar.xz linux-2fbfeb4fa61684955980b99603c29d2002a67118.zip |
Documentation: siphash: enclose HalfSipHash usage example in the literal block
Render usage example of HalfSipHash function as code block by using
literal block syntax.
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Eric Biggers <ebiggers@google.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Cc: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'Documentation/security/siphash.rst')
-rw-r--r-- | Documentation/security/siphash.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/security/siphash.rst b/Documentation/security/siphash.rst index 42794a7e052f..96b1492f4773 100644 --- a/Documentation/security/siphash.rst +++ b/Documentation/security/siphash.rst @@ -132,10 +132,10 @@ Generating a HalfSipHash key ============================ Keys should always be generated from a cryptographically secure source of -random numbers, either using get_random_bytes or get_random_once: +random numbers, either using get_random_bytes or get_random_once:: -hsiphash_key_t key; -get_random_bytes(&key, sizeof(key)); + hsiphash_key_t key; + get_random_bytes(&key, sizeof(key)); If you're not deriving your key from here, you're doing it wrong. |