And here go {,EC}DSA_SIG_it
authortb <tb@openbsd.org>
Mon, 15 Apr 2024 15:49:37 +0000 (15:49 +0000)
committertb <tb@openbsd.org>
Mon, 15 Apr 2024 15:49:37 +0000 (15:49 +0000)
ok jsing

lib/libcrypto/Symbols.list
lib/libcrypto/dsa/dsa_asn1.c
lib/libcrypto/ecdsa/ecdsa.c

index 0a9bf79..0f0d2e7 100644 (file)
@@ -820,7 +820,6 @@ DSAPublicKey_it
 DSA_OpenSSL
 DSA_SIG_free
 DSA_SIG_get0
-DSA_SIG_it
 DSA_SIG_new
 DSA_SIG_set0
 DSA_bits
@@ -876,7 +875,6 @@ ECDSA_SIG_free
 ECDSA_SIG_get0
 ECDSA_SIG_get0_r
 ECDSA_SIG_get0_s
-ECDSA_SIG_it
 ECDSA_SIG_new
 ECDSA_SIG_set0
 ECDSA_do_sign
index 5e4f882..cdd113a 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: dsa_asn1.c,v 1.31 2023/07/08 14:28:15 beck Exp $ */
+/* $OpenBSD: dsa_asn1.c,v 1.32 2024/04/15 15:49:37 tb Exp $ */
 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  * project 2000.
  */
@@ -109,7 +109,7 @@ static const ASN1_TEMPLATE DSA_SIG_seq_tt[] = {
        },
 };
 
-const ASN1_ITEM DSA_SIG_it = {
+static const ASN1_ITEM DSA_SIG_it = {
        .itype = ASN1_ITYPE_SEQUENCE,
        .utype = V_ASN1_SEQUENCE,
        .templates = DSA_SIG_seq_tt,
index 52f5044..5abc358 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: ecdsa.c,v 1.18 2023/08/08 13:09:28 tb Exp $ */
+/* $OpenBSD: ecdsa.c,v 1.19 2024/04/15 15:49:37 tb Exp $ */
 /* ====================================================================
  * Copyright (c) 2000-2002 The OpenSSL Project.  All rights reserved.
  *
@@ -84,7 +84,7 @@ static const ASN1_TEMPLATE ECDSA_SIG_seq_tt[] = {
        },
 };
 
-const ASN1_ITEM ECDSA_SIG_it = {
+static const ASN1_ITEM ECDSA_SIG_it = {
        .itype = ASN1_ITYPE_SEQUENCE,
        .utype = V_ASN1_SEQUENCE,
        .templates = ECDSA_SIG_seq_tt,