From c40df9ce532999dd1263c4638b27394f37fabb9a Mon Sep 17 00:00:00 2001 From: Torben Hansen <50673096+torben-hansen@users.noreply.github.com> Date: Thu, 12 Dec 2024 15:25:08 -0800 Subject: [PATCH] typo --- crypto/fipsmodule/rand/entropy/internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crypto/fipsmodule/rand/entropy/internal.h b/crypto/fipsmodule/rand/entropy/internal.h index 61e7601bae..cb15022905 100644 --- a/crypto/fipsmodule/rand/entropy/internal.h +++ b/crypto/fipsmodule/rand/entropy/internal.h @@ -52,8 +52,8 @@ OPENSSL_EXPORT int have_hw_rng_aarch64_for_testing(void); #if defined(OPENSSL_AARCH64) && !defined(OPENSSL_NO_ASM) -// rndr_multiple8 writes |len| number of bytes to |buf| generated using the -// rndr instruction. |len| must be a multiple of 8 and positive. +// CRYPTO_rndr_multiple8 writes |len| number of bytes to |buf| generated using +// the rndr instruction. |len| must be a multiple of 8 and positive. // Outputs 1 on success, 0 otherwise. int CRYPTO_rndr_multiple8(uint8_t *out, size_t out_len);