/openssl-master/apps/lib/ |
A D | app_x509.c | 90 char *stmp, *vtmp = NULL; in do_x509_ctrl_string() local 97 vtmp = strchr(stmp, ':'); in do_x509_ctrl_string() 98 if (vtmp != NULL) { in do_x509_ctrl_string() 99 *vtmp = 0; in do_x509_ctrl_string() 100 vtmp++; in do_x509_ctrl_string() 101 vtmp_len = strlen(vtmp); in do_x509_ctrl_string() 109 if (vtmp != NULL) { in do_x509_ctrl_string() 113 hexid = OPENSSL_hexstr2buf((const char *)vtmp, &hexid_len); in do_x509_ctrl_string() 115 stmp = vtmp = hexid; in do_x509_ctrl_string() 123 rv = ctrl(object, cmd, vtmp, vtmp_len); in do_x509_ctrl_string()
|
A D | opt.c | 683 const X509_VERIFY_PARAM *vtmp; in opt_verify() local 722 vtmp = X509_VERIFY_PARAM_lookup(opt_arg()); in opt_verify() 723 if (vtmp == NULL) { in opt_verify() 728 X509_VERIFY_PARAM_set1(vpm, vtmp); in opt_verify()
|
A D | apps.c | 2003 char *stmp, *vtmp = NULL; in pkey_ctrl_string() local 2008 vtmp = strchr(stmp, ':'); in pkey_ctrl_string() 2009 if (vtmp == NULL) in pkey_ctrl_string() 2012 *vtmp = 0; in pkey_ctrl_string() 2013 vtmp++; in pkey_ctrl_string() 2014 rv = EVP_PKEY_CTX_ctrl_str(ctx, stmp, vtmp); in pkey_ctrl_string() 3242 char *opt = "", *stmp, *vtmp = NULL; in app_params_new_from_opts() local 3255 || (vtmp = strchr(stmp, ':')) == NULL) in app_params_new_from_opts() 3258 *vtmp = 0; in app_params_new_from_opts() 3260 vtmp++; in app_params_new_from_opts() [all …]
|
/openssl-master/providers/implementations/rands/ |
A D | drbg_hash.c | 55 unsigned char vtmp[HASH_PRNG_MAX_SEEDLEN]; member 75 unsigned char *vtmp = hash->vtmp; in hash_df() local 111 if (!EVP_DigestFinal(ctx, vtmp, NULL)) in hash_df() 113 memcpy(out, vtmp, outlen); in hash_df() 114 OPENSSL_cleanse(vtmp, hash->blocklen); in hash_df() 185 && EVP_DigestFinal(ctx, hash->vtmp, NULL) in add_hash_to_v() 214 memcpy(hash->vtmp, hash->V, drbg->seedlen); in hash_gen() 224 memcpy(out, hash->vtmp, outlen); in hash_gen() 234 add_bytes(drbg, hash->vtmp, &one, 1); in hash_gen() 368 OPENSSL_cleanse(hash->vtmp, sizeof(hash->vtmp)); in drbg_hash_uninstantiate() [all …]
|
/openssl-master/crypto/x509/ |
A D | v3_info.c | 68 CONF_VALUE *vtmp; variable 79 vtmp = sk_CONF_VALUE_value(tret, i); 81 nlen = strlen(objtmp) + 3 + strlen(vtmp->name) + 1; 85 BIO_snprintf(ntmp, nlen, "%s - %s", objtmp, vtmp->name); 86 OPENSSL_free(vtmp->name); 87 vtmp->name = ntmp;
|
A D | v3_utl.c | 43 CONF_VALUE *vtmp = NULL; in x509v3_add_len_value() local 57 if ((vtmp = OPENSSL_malloc(sizeof(*vtmp))) == NULL) in x509v3_add_len_value() 61 vtmp->section = NULL; in x509v3_add_len_value() 62 vtmp->name = tname; in x509v3_add_len_value() 63 vtmp->value = tvalue; in x509v3_add_len_value() 73 OPENSSL_free(vtmp); in x509v3_add_len_value() 316 char *ntmp, *vtmp; in STACK_OF() local 360 vtmp = strip_spaces(q); in STACK_OF() 361 if (!vtmp) { in STACK_OF() 374 vtmp = strip_spaces(q); in STACK_OF() [all …]
|
/openssl-master/doc/man3/ |
A D | OSSL_PARAM_allocate_from_text.pod | 129 char *stmp, *vtmp = NULL; 134 vtmp = strchr(stmp, ':'); 135 if (vtmp != NULL) 136 *vtmp++ = '\0'; 137 rv = EVP_MAC_ctrl_str(ctx, stmp, vtmp); 167 char *stmp, *vtmp = NULL; 171 || (vtmp = strchr(stmp, ':')) == NULL) 174 *vtmp++ = '\0'; 177 vtmp, strlen(vtmp), NULL))
|
/openssl-master/crypto/asn1/ |
A D | tasn_fre.c | 135 ASN1_VALUE *vtmp = sk_ASN1_VALUE_value(sk, i); in ossl_asn1_template_free() local 137 ossl_asn1_item_embed_free(&vtmp, ASN1_ITEM_ptr(tt->item), embed); in ossl_asn1_template_free()
|
A D | asn1_gen.c | 578 CONF_VALUE vtmp; in asn1_str2type() local 605 vtmp.name = NULL; in asn1_str2type() 606 vtmp.section = NULL; in asn1_str2type() 607 vtmp.value = (char *)str; in asn1_str2type() 608 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean)) { in asn1_str2type()
|
A D | tasn_dec.c | 624 ASN1_VALUE *vtmp; in asn1_template_noexp_d2i() local 626 vtmp = sk_ASN1_VALUE_pop(sktmp); in asn1_template_noexp_d2i() 627 ASN1_item_ex_free(&vtmp, ASN1_ITEM_ptr(tt->item)); in asn1_template_noexp_d2i()
|