diff options
Diffstat (limited to 'src/lib/libcrypto/asn1/asn1_locl.h')
-rw-r--r-- | src/lib/libcrypto/asn1/asn1_locl.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/lib/libcrypto/asn1/asn1_locl.h b/src/lib/libcrypto/asn1/asn1_locl.h index aa3b50bbab..ca0b7d7d6e 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.38 2022/09/03 18:59:09 jsing Exp $ */ | 1 | /* $OpenBSD: asn1_locl.h,v 1.39 2022/09/11 17:22:52 tb 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 | */ |
@@ -225,4 +225,13 @@ ASN1_OBJECT *t2i_ASN1_OBJECT_internal(const char *oid); | |||
225 | 225 | ||
226 | int asn1_time_parse_cbs(const CBS *cbs, int is_gentime, struct tm *out_tm); | 226 | int asn1_time_parse_cbs(const CBS *cbs, int is_gentime, struct tm *out_tm); |
227 | 227 | ||
228 | ASN1_OBJECT *c2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp, | ||
229 | long length); | ||
230 | int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a, unsigned char **pp); | ||
231 | ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a, | ||
232 | const unsigned char **pp, long length); | ||
233 | int i2c_ASN1_INTEGER(ASN1_INTEGER *a, unsigned char **pp); | ||
234 | ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a, const unsigned char **pp, | ||
235 | long length); | ||
236 | |||
228 | __END_HIDDEN_DECLS | 237 | __END_HIDDEN_DECLS |