summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2024-01-02 19:54:43 +0000
committertb <>2024-01-02 19:54:43 +0000
commite4ca19785105cc2fc87838f017ee84369288e81b (patch)
tree7293eb70ba0e070ac856229165332fa4c3263e4f /src
parent948d4ca4abdd228b02a462a961f27b0be0c78ac5 (diff)
downloadopenbsd-e4ca19785105cc2fc87838f017ee84369288e81b.tar.gz
openbsd-e4ca19785105cc2fc87838f017ee84369288e81b.tar.bz2
openbsd-e4ca19785105cc2fc87838f017ee84369288e81b.zip
sm4: more NULL misspellings
Diffstat (limited to 'src')
-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