summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1/x_bignum.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/asn1/x_bignum.c')
-rw-r--r--src/lib/libcrypto/asn1/x_bignum.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/libcrypto/asn1/x_bignum.c b/src/lib/libcrypto/asn1/x_bignum.c
index 35b30da5b6..3e265b9cbc 100644
--- a/src/lib/libcrypto/asn1/x_bignum.c
+++ b/src/lib/libcrypto/asn1/x_bignum.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: x_bignum.c,v 1.14 2024/05/17 02:47:21 tb Exp $ */ 1/* $OpenBSD: x_bignum.c,v 1.15 2024/07/08 16:24:22 beck Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL 2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project 2000. 3 * project 2000.
4 */ 4 */
@@ -99,6 +99,7 @@ const ASN1_ITEM BIGNUM_it = {
99 .size = 0, 99 .size = 0,
100 .sname = "BIGNUM", 100 .sname = "BIGNUM",
101}; 101};
102LCRYPTO_ALIAS(BIGNUM_it);
102 103
103const ASN1_ITEM CBIGNUM_it = { 104const ASN1_ITEM CBIGNUM_it = {
104 .itype = ASN1_ITYPE_PRIMITIVE, 105 .itype = ASN1_ITYPE_PRIMITIVE,
@@ -109,6 +110,7 @@ const ASN1_ITEM CBIGNUM_it = {
109 .size = 0, 110 .size = 0,
110 .sname = "BIGNUM", 111 .sname = "BIGNUM",
111}; 112};
113LCRYPTO_ALIAS(CBIGNUM_it);
112 114
113static int 115static int
114bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) 116bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it)