Searched refs:btmp (Results 1 – 8 of 8) sorted by relevance
/openssl/crypto/conf/ |
H A D | conf_lib.c | 72 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 D | conf_def.c | 218 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 D | BIO_find_type.pod | 47 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 D | pk7_doit.c | 98 BIO *btmp; in pkcs7_bio_add_digest() local 132 *pbio = btmp; in pkcs7_bio_add_digest() 137 btmp = NULL; in pkcs7_bio_add_digest() 142 BIO_free(btmp); in pkcs7_bio_add_digest() 380 btmp = NULL; in PKCS7_dataInit() 772 BIO *btmp; in PKCS7_dataFinal() local 866 btmp = PKCS7_find_digest(&mdc, btmp, j); in PKCS7_dataFinal() 1070 BIO *btmp; in PKCS7_signatureVerify() local 1090 btmp = bio; in PKCS7_signatureVerify() 1093 ((btmp = BIO_find_type(btmp, BIO_TYPE_MD)) == NULL)) { in PKCS7_signatureVerify() [all …]
|
/openssl/crypto/x509/ |
H A D | v3_utl.c | 268 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 D | a_strex.c | 575 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 D | e_capi.c | 730 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 D | apps.c | 285 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() 1680 BIGNUM *btmp; in rand_serial() local 1683 btmp = b == NULL ? BN_new() : b; in rand_serial() 1684 if (btmp == NULL) in rand_serial() 1687 if (!BN_rand(btmp, SERIAL_RAND_BITS, BN_RAND_TOP_ANY, BN_RAND_BOTTOM_ANY)) in rand_serial() 1689 if (ai && !BN_to_ASN1_INTEGER(btmp, ai)) in rand_serial() 1696 if (btmp != b) in rand_serial() [all …]
|
Completed in 43 milliseconds