Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/lib/crypto/tests/sha384_kunit.c
26285 views
1
// SPDX-License-Identifier: GPL-2.0-or-later
2
/*
3
* Copyright 2025 Google LLC
4
*/
5
#include <crypto/sha2.h>
6
#include "sha384-testvecs.h"
7
8
#define HASH sha384
9
#define HASH_CTX sha384_ctx
10
#define HASH_SIZE SHA384_DIGEST_SIZE
11
#define HASH_INIT sha384_init
12
#define HASH_UPDATE sha384_update
13
#define HASH_FINAL sha384_final
14
#define HMAC_KEY hmac_sha384_key
15
#define HMAC_CTX hmac_sha384_ctx
16
#define HMAC_PREPAREKEY hmac_sha384_preparekey
17
#define HMAC_INIT hmac_sha384_init
18
#define HMAC_UPDATE hmac_sha384_update
19
#define HMAC_FINAL hmac_sha384_final
20
#define HMAC hmac_sha384
21
#define HMAC_USINGRAWKEY hmac_sha384_usingrawkey
22
#include "hash-test-template.h"
23
24
static struct kunit_case hash_test_cases[] = {
25
HASH_KUNIT_CASES,
26
KUNIT_CASE(benchmark_hash),
27
{},
28
};
29
30
static struct kunit_suite hash_test_suite = {
31
.name = "sha384",
32
.test_cases = hash_test_cases,
33
.suite_init = hash_suite_init,
34
.suite_exit = hash_suite_exit,
35
};
36
kunit_test_suite(hash_test_suite);
37
38
MODULE_DESCRIPTION("KUnit tests and benchmark for SHA-384 and HMAC-SHA384");
39
MODULE_LICENSE("GPL");
40
41