Coverage Report

Created: 2026-02-22 06:11

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl/crypto/sm3/legacy_sm3.c
Line
Count
Source
1
/*
2
 * Copyright 2017-2021 The OpenSSL Project Authors. All Rights Reserved.
3
 * Copyright 2017 Ribose Inc. All Rights Reserved.
4
 *
5
 * Licensed under the Apache License 2.0 (the "License").  You may not use
6
 * this file except in compliance with the License.  You can obtain a copy
7
 * in the file LICENSE in the source distribution or at
8
 * https://www.openssl.org/source/license.html
9
 */
10
11
#include "crypto/evp.h"
12
#include "internal/sm3.h"
13
14
static const EVP_MD sm3_md = {
15
    NID_sm3,
16
    NID_sm3WithRSAEncryption,
17
    SM3_DIGEST_LENGTH,
18
    0,
19
    EVP_ORIG_GLOBAL,
20
    SM3_CBLOCK
21
};
22
23
const EVP_MD *EVP_sm3(void)
24
3
{
25
3
    return &sm3_md;
26
3
}