Home
last modified time | relevance | path

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

/openssl/crypto/conf/
H 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 …]
H A Dconf_def.c218 char btmp[DECIMAL_SIZE(eline) + 1]; in def_load_bio() local
591 BIO_snprintf(btmp, sizeof(btmp), "%ld", eline); in def_load_bio()
592 ERR_add_error_data(2, "line ", btmp); in def_load_bio()
/openssl/doc/man3/
H 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/crypto/pkcs7/
H A Dpk7_doit.c61 BIO *btmp; in pkcs7_bio_add_digest() local
95 *pbio = btmp; in pkcs7_bio_add_digest()
100 btmp = NULL; in pkcs7_bio_add_digest()
105 BIO_free(btmp); in pkcs7_bio_add_digest()
343 btmp = NULL; in PKCS7_dataInit()
721 BIO *btmp; in PKCS7_dataFinal() local
815 btmp = PKCS7_find_digest(&mdc, btmp, j); in PKCS7_dataFinal()
1019 BIO *btmp; in PKCS7_signatureVerify() local
1038 btmp = bio; in PKCS7_signatureVerify()
1041 ((btmp = BIO_find_type(btmp, BIO_TYPE_MD)) == NULL)) { in PKCS7_signatureVerify()
[all …]
/openssl/crypto/x509/
H A Dv3_utl.c268 const char *btmp; in X509V3_get_value_bool() local
272 if (strcmp(btmp, "TRUE") == 0 in X509V3_get_value_bool()
273 || strcmp(btmp, "true") == 0 in X509V3_get_value_bool()
274 || strcmp(btmp, "Y") == 0 in X509V3_get_value_bool()
275 || strcmp(btmp, "y") == 0 in X509V3_get_value_bool()
276 || strcmp(btmp, "YES") == 0 in X509V3_get_value_bool()
281 if (strcmp(btmp, "FALSE") == 0 in X509V3_get_value_bool()
282 || strcmp(btmp, "false") == 0 in X509V3_get_value_bool()
283 || strcmp(btmp, "N") == 0 in X509V3_get_value_bool()
284 || strcmp(btmp, "n") == 0 in X509V3_get_value_bool()
[all …]
/openssl/crypto/asn1/
H 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/engines/
H A De_capi.c730 unsigned char *btmp; in capi_get_pkey() local
742 btmp = (unsigned char *)(dp + 1); in capi_get_pkey()
762 if (!lend_tobn(p, btmp, dsa_plen)) { in capi_get_pkey()
766 btmp += dsa_plen; in capi_get_pkey()
767 if (!lend_tobn(q, btmp, 20)) { in capi_get_pkey()
771 btmp += 20; in capi_get_pkey()
772 if (!lend_tobn(g, btmp, dsa_plen)) { in capi_get_pkey()
776 btmp += dsa_plen; in capi_get_pkey()
777 if (!lend_tobn(pub_key, btmp, dsa_plen)) { in capi_get_pkey()
781 btmp += dsa_plen; in capi_get_pkey()
/openssl/apps/lib/
H A Dapps.c285 BIO *btmp; in app_get_pass() local
297 btmp = BIO_new(BIO_f_buffer()); in app_get_pass()
298 if (btmp == NULL) { in app_get_pass()
304 pwdbio = BIO_push(btmp, pwdbio); in app_get_pass()
1651 BIGNUM *btmp; in rand_serial() local
1654 btmp = b == NULL ? BN_new() : b; in rand_serial()
1655 if (btmp == NULL) in rand_serial()
1658 if (!BN_rand(btmp, SERIAL_RAND_BITS, BN_RAND_TOP_ANY, BN_RAND_BOTTOM_ANY)) in rand_serial()
1660 if (ai && !BN_to_ASN1_INTEGER(btmp, ai)) in rand_serial()
1667 if (btmp != b) in rand_serial()
[all …]

Completed in 59 milliseconds