Home
last modified time | relevance | path

Searched refs:btmp (Results 1 – 8 of 8) sorted by relevance

/openssl-master/crypto/conf/
A Dconf_lib.c72 BIO *btmp; in LHASH_OF() local
78 ltmp = CONF_load_bio(conf, btmp, eline); in LHASH_OF()
79 BIO_free(btmp); in LHASH_OF()
153 BIO *btmp; in CONF_dump_fp() local
160 ret = CONF_dump_bio(conf, btmp); in CONF_dump_fp()
161 BIO_free(btmp); in CONF_dump_fp()
263 BIO *btmp; in NCONF_load_fp() local
270 BIO_free(btmp); in NCONF_load_fp()
383 BIO *btmp; in NCONF_dump_fp() local
389 ret = NCONF_dump_bio(conf, btmp); in NCONF_dump_fp()
[all …]
A Dconf_def.c218 char btmp[DECIMAL_SIZE(eline) + 1]; in def_load_bio() local
583 BIO_snprintf(btmp, sizeof(btmp), "%ld", eline); in def_load_bio()
584 ERR_add_error_data(2, "line ", btmp); in def_load_bio()
/openssl-master/doc/man3/
A DBIO_find_type.pod47 BIO *btmp;
49 btmp = in_bio; /* in_bio is chain to search through */
51 btmp = BIO_find_type(btmp, BIO_TYPE_MD);
52 if (btmp == NULL)
54 /* btmp is a digest BIO, do something with it ...*/
57 btmp = BIO_next(btmp);
58 } while (btmp);
/openssl-master/crypto/pkcs7/
A Dpk7_doit.c60 BIO *btmp; in pkcs7_bio_add_digest() local
90 *pbio = btmp; in pkcs7_bio_add_digest()
95 btmp = NULL; in pkcs7_bio_add_digest()
100 BIO_free(btmp); in pkcs7_bio_add_digest()
349 btmp = NULL; in PKCS7_dataInit()
723 BIO *btmp; in PKCS7_dataFinal() local
817 btmp = PKCS7_find_digest(&mdc, btmp, j); in PKCS7_dataFinal()
1016 BIO *btmp; in PKCS7_signatureVerify() local
1035 btmp = bio; in PKCS7_signatureVerify()
1038 ((btmp = BIO_find_type(btmp, BIO_TYPE_MD)) == NULL)) { in PKCS7_signatureVerify()
[all …]
/openssl-master/crypto/x509/
A Dv3_utl.c266 const char *btmp; in X509V3_get_value_bool() local
270 if (strcmp(btmp, "TRUE") == 0 in X509V3_get_value_bool()
271 || strcmp(btmp, "true") == 0 in X509V3_get_value_bool()
272 || strcmp(btmp, "Y") == 0 in X509V3_get_value_bool()
273 || strcmp(btmp, "y") == 0 in X509V3_get_value_bool()
274 || strcmp(btmp, "YES") == 0 in X509V3_get_value_bool()
279 if (strcmp(btmp, "FALSE") == 0 in X509V3_get_value_bool()
280 || strcmp(btmp, "false") == 0 in X509V3_get_value_bool()
281 || strcmp(btmp, "N") == 0 in X509V3_get_value_bool()
282 || strcmp(btmp, "n") == 0 in X509V3_get_value_bool()
[all …]
/openssl-master/crypto/asn1/
A Da_strex.c575 BIO *btmp; in X509_NAME_print_ex_fp() local
577 btmp = BIO_new_fp(fp, BIO_NOCLOSE); in X509_NAME_print_ex_fp()
578 if (!btmp) in X509_NAME_print_ex_fp()
580 ret = X509_NAME_print(btmp, nm, indent); in X509_NAME_print_ex_fp()
581 BIO_free(btmp); in X509_NAME_print_ex_fp()
/openssl-master/engines/
A De_capi.c720 unsigned char *btmp; in capi_get_pkey() local
732 btmp = (unsigned char *)(dp + 1); in capi_get_pkey()
749 if (!lend_tobn(p, btmp, dsa_plen)) in capi_get_pkey()
751 btmp += dsa_plen; in capi_get_pkey()
752 if (!lend_tobn(q, btmp, 20)) in capi_get_pkey()
754 btmp += 20; in capi_get_pkey()
755 if (!lend_tobn(g, btmp, dsa_plen)) in capi_get_pkey()
757 btmp += dsa_plen; in capi_get_pkey()
758 if (!lend_tobn(pub_key, btmp, dsa_plen)) in capi_get_pkey()
760 btmp += dsa_plen; in capi_get_pkey()
/openssl-master/apps/lib/
A Dapps.c290 BIO *btmp; in app_get_pass() local
301 btmp = BIO_new(BIO_f_buffer()); in app_get_pass()
302 pwdbio = BIO_push(btmp, pwdbio); in app_get_pass()
1590 BIGNUM *btmp; in rand_serial() local
1593 btmp = b == NULL ? BN_new() : b; in rand_serial()
1594 if (btmp == NULL) in rand_serial()
1597 if (!BN_rand(btmp, SERIAL_RAND_BITS, BN_RAND_TOP_ANY, BN_RAND_BOTTOM_ANY)) in rand_serial()
1599 if (ai && !BN_to_ASN1_INTEGER(btmp, ai)) in rand_serial()
1606 if (btmp != b) in rand_serial()
1607 BN_free(btmp); in rand_serial()

Completed in 33 milliseconds