21ee1de13601e976bfc056ee6fee871f4bac7bfb
[openssl.git] / crypto / evp / m_sm3.c
1 /*
2  * Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
3  * Copyright 2017 Ribose Inc. All Rights Reserved.
4  *
5  * Licensed under the OpenSSL license (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 <stdio.h>
12 #include "internal/cryptlib.h"
13
14 #ifndef OPENSSL_NO_SM3
15
16 # include <openssl/evp.h>
17 # include <openssl/objects.h>
18 # include <openssl/sm3.h>
19 # include "internal/evp_int.h"
20
21 static int init(EVP_MD_CTX *ctx)
22 {
23     return SM3_Init(EVP_MD_CTX_md_data(ctx));
24 }
25
26 static int update(EVP_MD_CTX *ctx, const void *data, size_t count)
27 {
28     return SM3_Update(EVP_MD_CTX_md_data(ctx), data, count);
29 }
30
31 static int final(EVP_MD_CTX *ctx, unsigned char *md)
32 {
33     return SM3_Final(md, EVP_MD_CTX_md_data(ctx));
34 }
35
36 static const EVP_MD sm3_md = {
37     NID_sm3,
38     NID_sm3WithRSAEncryption,
39     SM3_DIGEST_LENGTH,
40     0,
41     init,
42     update,
43     final,
44     NULL,
45     NULL,
46     SM3_CBLOCK,
47     sizeof(EVP_MD *) + sizeof(SM3_CTX),
48 };
49
50 const EVP_MD *EVP_sm3(void)
51 {
52     return &sm3_md;
53 }
54 #endif
55