Home
last modified time | relevance | path

Searched refs:pval (Results 1 – 25 of 138) sorted by relevance

123456

/netbsd-src/crypto/external/bsd/openssl/dist/crypto/asn1/
H A Dtasn_new.c18 static int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
21 static int asn1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
23 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
24 static int asn1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt,
26 static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
27 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
49 int ossl_asn1_item_ex_new_intern(ASN1_VALUE **pval, const ASN1_ITEM *it, in ossl_asn1_item_ex_new_intern() argument
52 return asn1_item_embed_new(pval, it, 0, libctx, propq); in ossl_asn1_item_ex_new_intern()
55 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it) in ASN1_item_ex_new() argument
57 return asn1_item_embed_new(pval, it, 0, NULL, NULL); in ASN1_item_ex_new()
[all …]
H A Dx_bignum.c24 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
25 static int bn_secure_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
26 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
28 static int bn_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype,
30 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
32 static int bn_secure_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
34 static int bn_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it,
65 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) in ASN1_ITEM_start()
67 *pval = (ASN1_VALUE *)BN_new(); in ASN1_ITEM_start()
68 if (*pval != NULL) in ASN1_ITEM_start()
[all …]
H A Dx_int64.c29 static int uint64_new(ASN1_VALUE **pval, const ASN1_ITEM *it) in uint64_new() argument
31 if ((*pval = (ASN1_VALUE *)OPENSSL_zalloc(sizeof(uint64_t))) == NULL) { in uint64_new()
38 static void uint64_free(ASN1_VALUE **pval, const ASN1_ITEM *it) in uint64_free() argument
40 OPENSSL_free(*pval); in uint64_free()
41 *pval = NULL; in uint64_free()
44 static void uint64_clear(ASN1_VALUE **pval, const ASN1_ITEM *it) in uint64_clear() argument
46 **(uint64_t **)pval = 0; in uint64_clear()
49 static int uint64_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype, in uint64_i2c() argument
55 char *cp = (char *)*pval; in uint64_i2c()
73 static int uint64_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, in uint64_c2i() argument
[all …]
H A Dtasn_utl.c29 int ossl_asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it) in ossl_asn1_get_choice_selector() argument
31 int *sel = offset2ptr(*pval, it->utype); in ossl_asn1_get_choice_selector()
36 int ossl_asn1_get_choice_selector_const(const ASN1_VALUE **pval, in ossl_asn1_get_choice_selector_const() argument
39 int *sel = offset2ptr(*pval, it->utype); in ossl_asn1_get_choice_selector_const()
48 int ossl_asn1_set_choice_selector(ASN1_VALUE **pval, int value, in ossl_asn1_set_choice_selector() argument
53 sel = offset2ptr(*pval, it->utype); in ossl_asn1_set_choice_selector()
68 int ossl_asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it) in ossl_asn1_do_lock() argument
81 lck = offset2ptr(*pval, aux->ref_offset); in ossl_asn1_do_lock()
82 lock = offset2ptr(*pval, aux->ref_lock); in ossl_asn1_do_lock()
112 static ASN1_ENCODING *asn1_get_enc_ptr(ASN1_VALUE **pval, const ASN1_ITEM *it) in asn1_get_enc_ptr() argument
[all …]
H A Dx_long.c21 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
22 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
24 static int long_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype,
26 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
28 static int long_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it,
49 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it) in ASN1_ITEM_start()
51 memcpy(pval, &it->size, COPY_SIZE(*pval, it->size)); in ASN1_ITEM_start()
55 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it) in long_free() argument
57 memcpy(pval, &it->size, COPY_SIZE(*pval, it->size)); in long_free()
85 static int long_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype, in long_i2c() argument
[all …]
H A Dtasn_enc.c19 static int asn1_i2d_ex_primitive(const ASN1_VALUE **pval, unsigned char **out,
25 static int asn1_template_ex_i2d(const ASN1_VALUE **pval, unsigned char **out,
29 static int asn1_ex_i2c(const ASN1_VALUE **pval, unsigned char *cout, int *putype,
83 int ASN1_item_ex_i2d(const ASN1_VALUE **pval, unsigned char **out, in ASN1_item_ex_i2d() argument
92 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && *pval == NULL) in ASN1_item_ex_i2d()
104 return asn1_template_ex_i2d(pval, out, it->templates, in ASN1_item_ex_i2d()
106 return asn1_i2d_ex_primitive(pval, out, it, tag, aclass); in ASN1_item_ex_i2d()
117 return asn1_i2d_ex_primitive(pval, out, it, -1, aclass); in ASN1_item_ex_i2d()
128 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL)) in ASN1_item_ex_i2d()
130 i = ossl_asn1_get_choice_selector_const(pval, it); in ASN1_item_ex_i2d()
[all …]
H A Dtasn_dec.c28 static int asn1_item_embed_d2i(ASN1_VALUE **pval, const unsigned char **in,
47 static int asn1_template_ex_d2i(ASN1_VALUE **pval,
57 static int asn1_d2i_ex_primitive(ASN1_VALUE **pval,
62 static int asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
107 static int asn1_item_ex_d2i_intern(ASN1_VALUE **pval, const unsigned char **in, in asn1_item_ex_d2i_intern() argument
114 if (pval == NULL || it == NULL) { in asn1_item_ex_d2i_intern()
118 rv = asn1_item_embed_d2i(pval, in, len, it, tag, aclass, opt, ctx, 0, in asn1_item_ex_d2i_intern()
121 ASN1_item_ex_free(pval, it); in asn1_item_ex_d2i_intern()
125 int ASN1_item_ex_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, in ASN1_item_ex_d2i() argument
129 return asn1_item_ex_d2i_intern(pval, in, len, it, tag, aclass, opt, ctx, in ASN1_item_ex_d2i()
[all …]
H A Dasn1_local.h50 int ossl_asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it);
51 int ossl_asn1_get_choice_selector_const(const ASN1_VALUE **pval,
53 int ossl_asn1_set_choice_selector(ASN1_VALUE **pval, int value,
56 ASN1_VALUE **ossl_asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
57 const ASN1_VALUE **ossl_asn1_get_const_field_ptr(const ASN1_VALUE **pval,
64 int ossl_asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it);
66 void ossl_asn1_enc_init(ASN1_VALUE **pval, const ASN1_ITEM *it);
67 void ossl_asn1_enc_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
68 int ossl_asn1_enc_restore(int *len, unsigned char **out, const ASN1_VALUE **pval,
70 int ossl_asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen,
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/asn1/
H A Dtasn_new.c18 static int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
20 static int asn1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
22 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
23 static int asn1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
24 static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
25 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
37 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it) in ASN1_item_ex_new() argument
39 return asn1_item_embed_new(pval, it, 0); in ASN1_item_ex_new()
42 int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed) in asn1_item_embed_new() argument
64 if (!ef->asn1_ex_new(pval, it)) in asn1_item_embed_new()
[all …]
H A Dtasn_fre.c23 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it) in ASN1_item_ex_free() argument
25 asn1_item_embed_free(pval, it, 0); in ASN1_item_ex_free()
28 void asn1_item_embed_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed) in asn1_item_embed_free() argument
36 if (!pval) in asn1_item_embed_free()
38 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval) in asn1_item_embed_free()
49 asn1_template_free(pval, it->templates); in asn1_item_embed_free()
51 asn1_primitive_free(pval, it, embed); in asn1_item_embed_free()
55 asn1_primitive_free(pval, it, embed); in asn1_item_embed_free()
60 i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL); in asn1_item_embed_free()
64 i = asn1_get_choice_selector(pval, it); in asn1_item_embed_free()
[all …]
H A Dx_bignum.c24 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
25 static int bn_secure_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
26 static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
28 static int bn_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype,
30 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
32 static int bn_secure_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
34 static int bn_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it,
65 static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it) in ASN1_ITEM_start()
67 *pval = (ASN1_VALUE *)BN_new(); in ASN1_ITEM_start()
68 if (*pval != NULL) in ASN1_ITEM_start()
[all …]
H A Dx_int64.c29 static int uint64_new(ASN1_VALUE **pval, const ASN1_ITEM *it) in uint64_new() argument
31 if ((*pval = (ASN1_VALUE *)OPENSSL_zalloc(sizeof(uint64_t))) == NULL) { in uint64_new()
38 static void uint64_free(ASN1_VALUE **pval, const ASN1_ITEM *it) in uint64_free() argument
40 OPENSSL_free(*pval); in uint64_free()
41 *pval = NULL; in uint64_free()
44 static void uint64_clear(ASN1_VALUE **pval, const ASN1_ITEM *it) in uint64_clear() argument
46 **(uint64_t **)pval = 0; in uint64_clear()
49 static int uint64_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, in uint64_i2c() argument
55 char *cp = (char *)*pval; in uint64_i2c()
73 static int uint64_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, in uint64_c2i() argument
[all …]
H A Dtasn_utl.c29 int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it) in asn1_get_choice_selector() argument
31 int *sel = offset2ptr(*pval, it->utype); in asn1_get_choice_selector()
39 int asn1_set_choice_selector(ASN1_VALUE **pval, int value, in asn1_set_choice_selector() argument
43 sel = offset2ptr(*pval, it->utype); in asn1_set_choice_selector()
58 int asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it) in asn1_do_lock() argument
71 lck = offset2ptr(*pval, aux->ref_offset); in asn1_do_lock()
72 lock = offset2ptr(*pval, aux->ref_lock); in asn1_do_lock()
104 static ASN1_ENCODING *asn1_get_enc_ptr(ASN1_VALUE **pval, const ASN1_ITEM *it) in asn1_get_enc_ptr() argument
107 if (!pval || !*pval) in asn1_get_enc_ptr()
112 return offset2ptr(*pval, aux->enc_offset); in asn1_get_enc_ptr()
[all …]
H A Dx_long.c25 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
26 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
28 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype,
30 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
32 static int long_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it,
53 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
55 memcpy(pval, &it->size, COPY_SIZE(*pval, it->size));
59 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
61 memcpy(pval, &it->size, COPY_SIZE(*pval, it->size));
89 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype,
[all …]
H A Dtasn_enc.c19 static int asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out,
24 static int asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out,
28 static int asn1_ex_i2c(ASN1_VALUE **pval, unsigned char *cout, int *putype,
82 int ASN1_item_ex_i2d(ASN1_VALUE **pval, unsigned char **out, in ASN1_item_ex_i2d() argument
91 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval) in ASN1_item_ex_i2d()
101 return asn1_template_ex_i2d(pval, out, it->templates, in ASN1_item_ex_i2d()
103 return asn1_i2d_ex_primitive(pval, out, it, tag, aclass); in ASN1_item_ex_i2d()
114 return asn1_i2d_ex_primitive(pval, out, it, -1, aclass); in ASN1_item_ex_i2d()
125 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL)) in ASN1_item_ex_i2d()
127 i = asn1_get_choice_selector(pval, it); in ASN1_item_ex_i2d()
[all …]
H A Dtasn_dec.c29 static int asn1_item_embed_d2i(ASN1_VALUE **pval, const unsigned char **in,
47 static int asn1_template_ex_d2i(ASN1_VALUE **pval,
55 static int asn1_d2i_ex_primitive(ASN1_VALUE **pval,
60 static int asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
105 ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **pval, in ASN1_item_d2i() argument
111 if (!pval) in ASN1_item_d2i()
112 pval = &ptmpval; in ASN1_item_d2i()
114 if (ASN1_item_ex_d2i(pval, in, len, it, -1, 0, 0, &c) > 0) in ASN1_item_d2i()
115 return *pval; in ASN1_item_d2i()
119 int ASN1_item_ex_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, in ASN1_item_ex_d2i() argument
[all …]
H A Dasn1_local.h48 int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it);
49 int asn1_set_choice_selector(ASN1_VALUE **pval, int value,
52 ASN1_VALUE **asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
54 const ASN1_TEMPLATE *asn1_do_adb(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt,
57 int asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it);
59 void asn1_enc_init(ASN1_VALUE **pval, const ASN1_ITEM *it);
60 void asn1_enc_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
61 int asn1_enc_restore(int *len, unsigned char **out, ASN1_VALUE **pval,
63 int asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen,
66 void asn1_item_embed_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed);
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/rsa/
H A Drsa_asn1.c28 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, in rsa_cb() argument
32 *pval = (ASN1_VALUE *)RSA_new(); in rsa_cb()
33 if (*pval != NULL) in rsa_cb()
37 RSA_free((RSA *)*pval); in rsa_cb()
38 *pval = NULL; in rsa_cb()
41 if (((RSA *)*pval)->version != RSA_ASN1_VERSION_MULTI) { in rsa_cb()
45 return (ossl_rsa_multip_calc_product((RSA *)*pval) == 1) ? 2 : 0; in rsa_cb()
77 static int rsa_pss_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
81 RSA_PSS_PARAMS *pss = (RSA_PSS_PARAMS *)*pval;
98 static int rsa_oaep_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/rsa/
H A Drsa_asn1.c22 static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, in rsa_cb() argument
26 *pval = (ASN1_VALUE *)RSA_new(); in rsa_cb()
27 if (*pval != NULL) in rsa_cb()
31 RSA_free((RSA *)*pval); in rsa_cb()
32 *pval = NULL; in rsa_cb()
35 if (((RSA *)*pval)->version != RSA_ASN1_VERSION_MULTI) { in rsa_cb()
39 return (rsa_multip_calc_product((RSA *)*pval) == 1) ? 2 : 0; in rsa_cb()
71 static int rsa_pss_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
75 RSA_PSS_PARAMS *pss = (RSA_PSS_PARAMS *)*pval;
91 static int rsa_oaep_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
[all …]
/netbsd-src/external/bsd/ntp/dist/include/
H A Dsafecast.h32 #define UA_PTR(ptype,pval) ((ptype *)(void*)(pval)) argument
33 #define UAC_PTR(ptype,pval) ((const ptype *)(const void*)(pval)) argument
34 #define UAV_PTR(ptype,pval) ((volatile ptype *)(volatile void*)(pval)) argument
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/dsa/
H A Ddsa_asn1.c25 static int dsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, in dsa_cb() argument
29 *pval = (ASN1_VALUE *)DSA_new(); in dsa_cb()
30 if (*pval != NULL) in dsa_cb()
34 DSA_free((DSA *)*pval); in dsa_cb()
35 *pval = NULL; in dsa_cb()
/netbsd-src/external/bsd/am-utils/dist/amd/
H A Dinfo_hesiod.c65 int hesiod_search(mnt_map *m, char *map, char *key, char **pval, time_t *tp);
93 hesiod_search(mnt_map *m, char *map, char *key, char **pval, time_t *tp) in hesiod_search() argument
102 (unsigned long) m, map, key, (unsigned long) pval, (unsigned long) tp); in hesiod_search()
130 *pval = sun_entry2amd(key, *rvec); in hesiod_search()
133 *pval = *rvec; in hesiod_search()
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/
H A DASN1_EXTERN_FUNCS.pod14 typedef int ASN1_ex_d2i(ASN1_VALUE **pval, const unsigned char **in, long len,
17 typedef int ASN1_ex_d2i_ex(ASN1_VALUE **pval, const unsigned char **in, long len,
21 typedef int ASN1_ex_i2d(const ASN1_VALUE **pval, unsigned char **out,
23 typedef int ASN1_ex_new_func(ASN1_VALUE **pval, const ASN1_ITEM *it);
24 typedef int ASN1_ex_new_ex_func(ASN1_VALUE **pval, const ASN1_ITEM *it,
26 typedef void ASN1_ex_free_func(ASN1_VALUE **pval, const ASN1_ITEM *it);
27 typedef int ASN1_ex_print_func(BIO *out, const ASN1_VALUE **pval,
71 newly constructed value should be stored in I<*pval>. The I<it> parameter is a
79 A "free" function responsible for freeing the B<ASN1_VALUE> passed in I<*pval>
87 in I<*pval> and making it suitable for reuse. The I<it> parameter is a pointer
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/dh/
H A Ddh_asn1.c25 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, in dh_cb() argument
29 *pval = (ASN1_VALUE *)DH_new(); in dh_cb()
30 if (*pval != NULL) in dh_cb()
34 DH_free((DH *)*pval); in dh_cb()
35 *pval = NULL; in dh_cb()
38 DH *dh = (DH *)*pval; in dh_cb()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/x509/
H A Dx_pubkey.c85 static void x509_pubkey_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it) in x509_pubkey_ex_free() argument
89 if (pval != NULL && (pubkey = (X509_PUBKEY *)*pval) != NULL) { in x509_pubkey_ex_free()
95 *pval = NULL; in x509_pubkey_ex_free()
99 static int x509_pubkey_ex_populate(ASN1_VALUE **pval, const ASN1_ITEM *it) in x509_pubkey_ex_populate() argument
101 X509_PUBKEY *pubkey = (X509_PUBKEY *)*pval; in x509_pubkey_ex_populate()
110 static int x509_pubkey_ex_new_ex(ASN1_VALUE **pval, const ASN1_ITEM *it, in x509_pubkey_ex_new_ex() argument
122 *pval = (ASN1_VALUE *)ret; in x509_pubkey_ex_new_ex()
128 static int x509_pubkey_ex_d2i_ex(ASN1_VALUE **pval, in x509_pubkey_ex_d2i_ex() argument
141 if (*pval == NULL && !x509_pubkey_ex_new_ex(pval, it, libctx, propq)) in x509_pubkey_ex_d2i_ex()
143 if (!x509_pubkey_ex_populate(pval, NULL)) { in x509_pubkey_ex_d2i_ex()
[all …]

123456