summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1/asn1_locl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/asn1/asn1_locl.h')
-rw-r--r--src/lib/libcrypto/asn1/asn1_locl.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/libcrypto/asn1/asn1_locl.h b/src/lib/libcrypto/asn1/asn1_locl.h
index db456c8ff2..2d007061f2 100644
--- a/src/lib/libcrypto/asn1/asn1_locl.h
+++ b/src/lib/libcrypto/asn1/asn1_locl.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: asn1_locl.h,v 1.32 2022/05/17 09:17:20 tb Exp $ */ 1/* $OpenBSD: asn1_locl.h,v 1.33 2022/06/25 15:39:12 jsing 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 2006. 3 * project 2006.
4 */ 4 */
@@ -208,6 +208,9 @@ int asn1_tag2charwidth(int tag);
208int asn1_abs_set_unused_bits(ASN1_BIT_STRING *abs, uint8_t unused_bits); 208int asn1_abs_set_unused_bits(ASN1_BIT_STRING *abs, uint8_t unused_bits);
209int c2i_ASN1_BIT_STRING_cbs(ASN1_BIT_STRING **out_abs, CBS *cbs); 209int c2i_ASN1_BIT_STRING_cbs(ASN1_BIT_STRING **out_abs, CBS *cbs);
210 210
211int asn1_aint_get_uint64(CBS *cbs, uint64_t *out_val);
212int asn1_aint_set_uint64(uint64_t val, uint8_t **out_data, int *out_len);
213int asn1_aint_get_int64(CBS *cbs, int negative, int64_t *out_val);
211int c2i_ASN1_INTEGER_cbs(ASN1_INTEGER **out_aint, CBS *cbs); 214int c2i_ASN1_INTEGER_cbs(ASN1_INTEGER **out_aint, CBS *cbs);
212 215
213int c2i_ASN1_OBJECT_cbs(ASN1_OBJECT **out_aobj, CBS *content); 216int c2i_ASN1_OBJECT_cbs(ASN1_OBJECT **out_aobj, CBS *content);