mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
05bd1e2a78
Remove the unused CFB implementation. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
21 lines
598 B
C
21 lines
598 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
#ifndef ASM_X86_SM4_AVX_H
|
|
#define ASM_X86_SM4_AVX_H
|
|
|
|
#include <linux/types.h>
|
|
#include <crypto/sm4.h>
|
|
|
|
typedef void (*sm4_crypt_func)(const u32 *rk, u8 *dst, const u8 *src, u8 *iv);
|
|
|
|
int sm4_avx_ecb_encrypt(struct skcipher_request *req);
|
|
int sm4_avx_ecb_decrypt(struct skcipher_request *req);
|
|
|
|
int sm4_cbc_encrypt(struct skcipher_request *req);
|
|
int sm4_avx_cbc_decrypt(struct skcipher_request *req,
|
|
unsigned int bsize, sm4_crypt_func func);
|
|
|
|
int sm4_avx_ctr_crypt(struct skcipher_request *req,
|
|
unsigned int bsize, sm4_crypt_func func);
|
|
|
|
#endif
|