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