1EVP_SM4_CBC(3) OpenSSL EVP_SM4_CBC(3)
2
3
4
6 EVP_sm4_cbc, EVP_sm4_ecb, EVP_sm4_cfb, EVP_sm4_ofb, EVP_sm4_ctr - EVP
7 SM4 cipher
8
10 #include <openssl/evp.h>
11
12 const EVP_CIPHER *EVP_sm4_cbc(void);
13 const EVP_CIPHER *EVP_sm4_ecb(void);
14 const EVP_CIPHER *EVP_sm4_cfb(void);
15 const EVP_CIPHER *EVP_sm4_ofb(void);
16 const EVP_CIPHER *EVP_sm4_ctr(void);
17
19 The SM4 blockcipher (GB/T 32907-2016) for EVP.
20
21 All modes below use a key length of 128 bits and acts on blocks of 128
22 bits.
23
24 EVP_sm4_cbc(), EVP_sm4_ecb(), EVP_sm4_cfb(), EVP_sm4_ofb(),
25 EVP_sm4_ctr()
26 The SM4 blockcipher with a 128-bit key in CBC, ECB, CFB, OFB and
27 CTR modes respectively.
28
30 These functions return a EVP_CIPHER structure that contains the
31 implementation of the symmetric cipher. See EVP_CIPHER_meth_new(3) for
32 details of the EVP_CIPHER structure.
33
35 evp(7), EVP_EncryptInit(3), EVP_CIPHER_meth_new(3)
36
38 Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
39 Copyright 2017 Ribose Inc. All Rights Reserved.
40
41 Licensed under the OpenSSL license (the "License"). You may not use
42 this file except in compliance with the License. You can obtain a copy
43 in the file LICENSE in the source distribution or at
44 <https://www.openssl.org/source/license.html>.
45
46
47
481.1.1 2018-09-11 EVP_SM4_CBC(3)