Coverage Report

Created: 2018-08-29 13:53

/src/openssl/crypto/evp/e_sm4.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
3
 * Copyright 2017 Ribose Inc. All Rights Reserved.
4
 * Ported from Ribose contributions from Botan.
5
 *
6
 * Licensed under the OpenSSL license (the "License").  You may not use
7
 * this file except in compliance with the License.  You can obtain a copy
8
 * in the file LICENSE in the source distribution or at
9
 * https://www.openssl.org/source/license.html
10
 */
11
12
#include "internal/cryptlib.h"
13
#ifndef OPENSSL_NO_SM4
14
# include <openssl/evp.h>
15
# include <openssl/modes.h>
16
# include "internal/sm4.h"
17
# include "internal/evp_int.h"
18
19
typedef struct {
20
    SM4_KEY ks;
21
} EVP_SM4_KEY;
22
23
static int sm4_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
24
                        const unsigned char *iv, int enc)
25
0
{
26
0
    SM4_set_key(key, EVP_CIPHER_CTX_get_cipher_data(ctx));
27
0
    return 1;
28
0
}
29
30
static void sm4_cbc_encrypt(const unsigned char *in, unsigned char *out,
31
                            size_t len, const SM4_KEY *key,
32
                            unsigned char *ivec, const int enc)
33
0
{
34
0
    if (enc)
35
0
        CRYPTO_cbc128_encrypt(in, out, len, key, ivec,
36
0
                              (block128_f)SM4_encrypt);
37
0
    else
38
0
        CRYPTO_cbc128_decrypt(in, out, len, key, ivec,
39
0
                              (block128_f)SM4_decrypt);
40
0
}
41
42
static void sm4_cfb128_encrypt(const unsigned char *in, unsigned char *out,
43
                               size_t length, const SM4_KEY *key,
44
                               unsigned char *ivec, int *num, const int enc)
45
0
{
46
0
    CRYPTO_cfb128_encrypt(in, out, length, key, ivec, num, enc,
47
0
                          (block128_f)SM4_encrypt);
48
0
}
49
50
static void sm4_ecb_encrypt(const unsigned char *in, unsigned char *out,
51
                            const SM4_KEY *key, const int enc)
52
0
{
53
0
    if (enc)
54
0
        SM4_encrypt(in, out, key);
55
0
    else
56
0
        SM4_decrypt(in, out, key);
57
0
}
58
59
static void sm4_ofb128_encrypt(const unsigned char *in, unsigned char *out,
60
                               size_t length, const SM4_KEY *key,
61
                               unsigned char *ivec, int *num)
62
0
{
63
0
    CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num,
64
0
                          (block128_f)SM4_encrypt);
65
0
}
66
67
IMPLEMENT_BLOCK_CIPHER(sm4, ks, sm4, EVP_SM4_KEY, NID_sm4,
68
                       16, 16, 16, 128, EVP_CIPH_FLAG_DEFAULT_ASN1,
69
                       sm4_init_key, 0, 0, 0, 0)
70
71
static int sm4_ctr_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
72
                          const unsigned char *in, size_t len)
73
0
{
74
0
    unsigned int num = EVP_CIPHER_CTX_num(ctx);
75
0
    EVP_SM4_KEY *dat = EVP_C_DATA(EVP_SM4_KEY, ctx);
76
0
77
0
    CRYPTO_ctr128_encrypt(in, out, len, &dat->ks,
78
0
                          EVP_CIPHER_CTX_iv_noconst(ctx),
79
0
                          EVP_CIPHER_CTX_buf_noconst(ctx), &num,
80
0
                          (block128_f)SM4_encrypt);
81
0
    EVP_CIPHER_CTX_set_num(ctx, num);
82
0
    return 1;
83
0
}
84
85
static const EVP_CIPHER sm4_ctr_mode = {
86
    NID_sm4_ctr, 1, 16, 16,
87
    EVP_CIPH_CTR_MODE,
88
    sm4_init_key,
89
    sm4_ctr_cipher,
90
    NULL,
91
    sizeof(EVP_SM4_KEY),
92
    NULL, NULL, NULL, NULL
93
};
94
95
const EVP_CIPHER *EVP_sm4_ctr(void)
96
8
{
97
8
    return &sm4_ctr_mode;
98
8
}
99
100
#endif