summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/sm3/sm3.c
diff options
context:
space:
mode:
authorbeck <>2023-07-07 19:37:54 +0000
committerbeck <>2023-07-07 19:37:54 +0000
commit1ca8095297adf80b48019b5a2d18010ff9e3427f (patch)
treeb1fe16b4625998f0f024f4d3eef5d59a3e905a9a /src/lib/libcrypto/sm3/sm3.c
parent66ac57d506be0af957abeb5a5a7334a8d2a36c9b (diff)
downloadopenbsd-1ca8095297adf80b48019b5a2d18010ff9e3427f.tar.gz
openbsd-1ca8095297adf80b48019b5a2d18010ff9e3427f.tar.bz2
openbsd-1ca8095297adf80b48019b5a2d18010ff9e3427f.zip
Unbreak the namespace build after a broken mk.conf and tool misfire had
me aliasing symbols not in the headers I was procesing. This unbreaks the namespace build so it will pass again ok tb@
Diffstat (limited to 'src/lib/libcrypto/sm3/sm3.c')
-rw-r--r--src/lib/libcrypto/sm3/sm3.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/sm3/sm3.c b/src/lib/libcrypto/sm3/sm3.c
index 039a92201b..df4a4e8229 100644
--- a/src/lib/libcrypto/sm3/sm3.c
+++ b/src/lib/libcrypto/sm3/sm3.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sm3.c,v 1.3 2023/07/07 12:01:32 beck Exp $ */ 1/* $OpenBSD: sm3.c,v 1.4 2023/07/07 19:37:54 beck Exp $ */
2/* 2/*
3 * Copyright (c) 2018, Ribose Inc 3 * Copyright (c) 2018, Ribose Inc
4 * 4 *
@@ -35,7 +35,6 @@ SM3_Init(SM3_CTX *c)
35 c->H = SM3_H; 35 c->H = SM3_H;
36 return 1; 36 return 1;
37} 37}
38LCRYPTO_ALIAS(SM3_Init);
39 38
40void 39void
41SM3_block_data_order(SM3_CTX *ctx, const void *p, size_t num) 40SM3_block_data_order(SM3_CTX *ctx, const void *p, size_t num)