slhdsa: fix some ClangTidy warnings.

Change-Id: I9dca8533a59e214707862d6ece233a4332ced4d3
Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/71328
Commit-Queue: Adam Langley <agl@google.com>
Auto-Submit: Adam Langley <agl@google.com>
Reviewed-by: David Benjamin <davidben@google.com>
Commit-Queue: David Benjamin <davidben@google.com>
This commit is contained in:
Adam Langley
2024-09-16 21:03:42 +00:00
committed by Boringssl LUCI CQ
parent 67ceb11911
commit 2958490127
2 changed files with 3 additions and 3 deletions
+3 -2
View File
@@ -50,10 +50,11 @@ void SLHDSA_SHA2_128S_generate_key_from_seed(
void SLHDSA_SHA2_128S_generate_key(
uint8_t out_public_key[SLHDSA_SHA2_128S_PUBLIC_KEY_BYTES],
uint8_t out_secret_key[SLHDSA_SHA2_128S_PRIVATE_KEY_BYTES]) {
uint8_t out_private_key[SLHDSA_SHA2_128S_PRIVATE_KEY_BYTES]) {
uint8_t seed[3 * SLHDSA_SHA2_128S_N];
RAND_bytes(seed, 3 * SLHDSA_SHA2_128S_N);
SLHDSA_SHA2_128S_generate_key_from_seed(out_public_key, out_secret_key, seed);
SLHDSA_SHA2_128S_generate_key_from_seed(out_public_key, out_private_key,
seed);
}
OPENSSL_EXPORT void SLHDSA_SHA2_128S_public_from_private(
-1
View File
@@ -19,7 +19,6 @@
#include <vector>
#include <gtest/gtest.h>
#include <openssl/bytestring.h>
#include <openssl/slhdsa.h>
#include "../test/file_test.h"