summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/libcrypto/evp/e_sm4.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/evp/e_sm4.c b/src/lib/libcrypto/evp/e_sm4.c
index 9de2080b27..9db45a87f6 100644
--- a/src/lib/libcrypto/evp/e_sm4.c
+++ b/src/lib/libcrypto/evp/e_sm4.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: e_sm4.c,v 1.10 2023/12/02 19:07:10 tb Exp $ */ 1/* $OpenBSD: e_sm4.c,v 1.11 2024/01/02 19:54:43 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2017, 2019 Ribose Inc 3 * Copyright (c) 2017, 2019 Ribose Inc
4 * 4 *
@@ -220,9 +220,9 @@ static const EVP_CIPHER sm4_ecb = {
220 .do_cipher = sm4_ecb_cipher, 220 .do_cipher = sm4_ecb_cipher,
221 .cleanup = NULL, 221 .cleanup = NULL,
222 .ctx_size = sizeof(EVP_SM4_KEY), 222 .ctx_size = sizeof(EVP_SM4_KEY),
223 .set_asn1_parameters = 0, 223 .set_asn1_parameters = NULL,
224 .get_asn1_parameters = 0, 224 .get_asn1_parameters = NULL,
225 .ctrl = 0, 225 .ctrl = NULL,
226 .app_data = NULL, 226 .app_data = NULL,
227}; 227};
228 228