Files
linux/lib/crypto/tests/sm3_kunit.c
Eric Biggers d6781b8ba3 lib/crypto: tests: Add KUnit tests for SM3
Add a KUnit test suite for the SM3 library.  It closely mirrors the test
suites for the other cryptographic hash functions.  The actual test and
benchmark logic is already in hash-test-template.h; this just wires it
up for SM3 in the usual way.

Acked-by: Ard Biesheuvel <ardb@kernel.org>
Link: https://lore.kernel.org/r/20260321040935.410034-6-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@kernel.org>
2026-03-23 17:50:59 -07:00

32 lines
705 B
C

// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Copyright 2026 Google LLC
*/
#include <crypto/sm3.h>
#include "sm3-testvecs.h"
#define HASH sm3
#define HASH_CTX sm3_ctx
#define HASH_SIZE SM3_DIGEST_SIZE
#define HASH_INIT sm3_init
#define HASH_UPDATE sm3_update
#define HASH_FINAL sm3_final
#include "hash-test-template.h"
static struct kunit_case sm3_test_cases[] = {
HASH_KUNIT_CASES,
KUNIT_CASE(benchmark_hash),
{},
};
static struct kunit_suite sm3_test_suite = {
.name = "sm3",
.test_cases = sm3_test_cases,
.suite_init = hash_suite_init,
.suite_exit = hash_suite_exit,
};
kunit_test_suite(sm3_test_suite);
MODULE_DESCRIPTION("KUnit tests and benchmark for SM3");
MODULE_LICENSE("GPL");