summaryrefslogtreecommitdiff
path: root/lib/libcrypto/evp/m_sm3.c
blob: 672d06f9fd398e3d9feedeaa4c51c6ad9611e0c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*	$OpenBSD: m_sm3.c,v 1.7 2024/04/09 13:52:41 beck Exp $	*/
/*
 * Copyright (c) 2018, Ribose Inc
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <openssl/opensslconf.h>

#ifndef OPENSSL_NO_SM3
#include <openssl/evp.h>
#include <openssl/sm3.h>

#ifndef OPENSSL_NO_RSA
#include <openssl/rsa.h>
#endif

#include "evp_local.h"

static int
sm3_init(EVP_MD_CTX *ctx)
{
	return SM3_Init(ctx->md_data);
}

static int
sm3_update(EVP_MD_CTX *ctx, const void *data, size_t count)
{
	return SM3_Update(ctx->md_data, data, count);
}

static int
sm3_final(EVP_MD_CTX *ctx, unsigned char *md)
{
	return SM3_Final(md, ctx->md_data);
}

static const EVP_MD sm3_md = {
	.type = NID_sm3,
	.pkey_type = NID_sm3WithRSAEncryption,
	.md_size = SM3_DIGEST_LENGTH,
	.flags = EVP_MD_FLAG_DIGALGID_ABSENT,
	.init = sm3_init,
	.update = sm3_update,
	.final = sm3_final,
	.copy = NULL,
	.cleanup = NULL,
	.block_size = SM3_CBLOCK,
	.ctx_size = sizeof(EVP_MD *) + sizeof(SM3_CTX),
};

const EVP_MD *
EVP_sm3(void)
{
	return &sm3_md;
}
LCRYPTO_ALIAS(EVP_sm3);

#endif /* OPENSSL_NO_SM3 */