-/* $OpenBSD: asn1t.h,v 1.21 2022/05/12 19:11:14 jsing Exp $ */
+/* $OpenBSD: asn1t.h,v 1.22 2022/09/03 16:01:23 jsing Exp $ */
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
* project 2000.
*/
extern const ASN1_ITEM ASN1_TBOOLEAN_it;
extern const ASN1_ITEM ASN1_FBOOLEAN_it;
extern const ASN1_ITEM ASN1_SEQUENCE_it;
-extern const ASN1_ITEM CBIGNUM_it;
extern const ASN1_ITEM BIGNUM_it;
extern const ASN1_ITEM LONG_it;
extern const ASN1_ITEM ZLONG_it;
+#ifndef LIBRESSL_INTERNAL
+extern const ASN1_ITEM CBIGNUM_it;
+#endif
+
DECLARE_STACK_OF(ASN1_VALUE)
/* Functions used internally by the ASN1 code */
-/* $OpenBSD: dsa_asn1.c,v 1.24 2022/01/14 08:29:06 tb Exp $ */
+/* $OpenBSD: dsa_asn1.c,v 1.25 2022/09/03 16:01:23 jsing Exp $ */
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
* project 2000.
*/
.tag = 0,
.offset = offsetof(DSA_SIG, r),
.field_name = "r",
- .item = &CBIGNUM_it,
+ .item = &BIGNUM_it,
},
{
.flags = 0,
.tag = 0,
.offset = offsetof(DSA_SIG, s),
.field_name = "s",
- .item = &CBIGNUM_it,
+ .item = &BIGNUM_it,
},
};
-/* $OpenBSD: ecs_asn1.c,v 1.10 2022/01/05 20:39:04 tb Exp $ */
+/* $OpenBSD: ecs_asn1.c,v 1.11 2022/09/03 16:01:23 jsing Exp $ */
/* ====================================================================
* Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved.
*
.tag = 0,
.offset = offsetof(ECDSA_SIG, r),
.field_name = "r",
- .item = &CBIGNUM_it,
+ .item = &BIGNUM_it,
},
{
.flags = 0,
.tag = 0,
.offset = offsetof(ECDSA_SIG, s),
.field_name = "s",
- .item = &CBIGNUM_it,
+ .item = &BIGNUM_it,
},
};