Searched refs:stmp (Results 1 – 7 of 7) sorted by relevance
| /crypto/x509/ |
| A D | x509_att.c | 348 ASN1_STRING *stmp = NULL; in X509_ATTRIBUTE_set1_data() local 356 stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype, in X509_ATTRIBUTE_set1_data() 358 if (stmp == NULL) { in X509_ATTRIBUTE_set1_data() 362 atype = stmp->type; in X509_ATTRIBUTE_set1_data() 364 if ((stmp = ASN1_STRING_type_new(attrtype)) == NULL in X509_ATTRIBUTE_set1_data() 365 || !ASN1_STRING_set(stmp, data, len)) { in X509_ATTRIBUTE_set1_data() 377 ASN1_STRING_free(stmp); in X509_ATTRIBUTE_set1_data() 390 ASN1_TYPE_set(ttmp, atype, stmp); in X509_ATTRIBUTE_set1_data() 391 stmp = NULL; in X509_ATTRIBUTE_set1_data() 400 ASN1_STRING_free(stmp); in X509_ATTRIBUTE_set1_data()
|
| A D | x509_lu.c | 325 X509_OBJECT stmp, *tmp; in ossl_x509_store_ctx_get_by_subject() local 331 stmp.type = X509_LU_NONE; in ossl_x509_store_ctx_get_by_subject() 332 stmp.data.x509 = NULL; in ossl_x509_store_ctx_get_by_subject() 358 j = X509_LOOKUP_by_subject_ex(lu, type, name, &stmp, in ossl_x509_store_ctx_get_by_subject() 361 tmp = &stmp; in ossl_x509_store_ctx_get_by_subject() 538 X509_OBJECT stmp; in x509_object_idx_cnt() local 542 stmp.type = type; in x509_object_idx_cnt() 545 stmp.data.x509 = &x509_s; in x509_object_idx_cnt() 549 stmp.data.crl = &crl_s; in x509_object_idx_cnt() 559 return sk_X509_OBJECT_find_all(h, &stmp, pnmatch); in x509_object_idx_cnt()
|
| A D | by_dir.c | 235 X509_OBJECT stmp, *tmp; in get_cert_by_subject_ex() local 241 stmp.type = type; in get_cert_by_subject_ex() 244 stmp.data.x509 = &data.st_x509; in get_cert_by_subject_ex() 247 stmp.data.crl = &data.crl; in get_cert_by_subject_ex() 353 j = sk_X509_OBJECT_find(xl->store_ctx->objs, &stmp); in get_cert_by_subject_ex()
|
| A D | v3_ncons.c | 443 ASN1_STRING stmp; in NAME_CONSTRAINTS_check_CN() local 446 stmp.flags = 0; in NAME_CONSTRAINTS_check_CN() 447 stmp.type = V_ASN1_IA5STRING; in NAME_CONSTRAINTS_check_CN() 449 gntmp.d.dNSName = &stmp; in NAME_CONSTRAINTS_check_CN() 471 stmp.length = (int)idlen; in NAME_CONSTRAINTS_check_CN() 472 stmp.data = idval; in NAME_CONSTRAINTS_check_CN()
|
| /crypto/asn1/ |
| A D | x_algor.c | 181 ASN1_STRING *stmp = NULL; in ossl_x509_algor_md_to_mgf1() local 189 if (ASN1_item_pack(algtmp, ASN1_ITEM_rptr(X509_ALGOR), &stmp) == NULL) in ossl_x509_algor_md_to_mgf1() 191 *palg = ossl_X509_ALGOR_from_nid(NID_mgf1, V_ASN1_SEQUENCE, stmp); in ossl_x509_algor_md_to_mgf1() 194 stmp = NULL; in ossl_x509_algor_md_to_mgf1() 196 ASN1_STRING_free(stmp); in ossl_x509_algor_md_to_mgf1()
|
| A D | a_strex.c | 607 ASN1_STRING stmp, *str = &stmp; in ASN1_STRING_to_UTF8() local 618 stmp.data = NULL; in ASN1_STRING_to_UTF8() 619 stmp.length = 0; in ASN1_STRING_to_UTF8() 620 stmp.flags = 0; in ASN1_STRING_to_UTF8() 626 *out = stmp.data; in ASN1_STRING_to_UTF8() 627 return stmp.length; in ASN1_STRING_to_UTF8()
|
| A D | tasn_dec.c | 835 ASN1_STRING *stmp; in asn1_ex_c2i() local 934 stmp = ASN1_STRING_type_new(utype); in asn1_ex_c2i() 935 if (stmp == NULL) { in asn1_ex_c2i() 939 *pval = (ASN1_VALUE *)stmp; in asn1_ex_c2i() 941 stmp = (ASN1_STRING *)*pval; in asn1_ex_c2i() 942 stmp->type = utype; in asn1_ex_c2i() 946 ASN1_STRING_set0(stmp, (unsigned char *)cont /* UGLY CAST! */, len); in asn1_ex_c2i() 949 if (!ASN1_STRING_set(stmp, cont, len)) { in asn1_ex_c2i() 951 ASN1_STRING_free(stmp); in asn1_ex_c2i()
|
Completed in 23 milliseconds