Lines Matching refs:btmp
290 BIO *btmp; in app_get_pass() local
301 btmp = BIO_new(BIO_f_buffer()); in app_get_pass()
302 if (btmp == NULL) { in app_get_pass()
308 pwdbio = BIO_push(btmp, pwdbio); in app_get_pass()
1614 BIGNUM *btmp; in rand_serial() local
1617 btmp = b == NULL ? BN_new() : b; in rand_serial()
1618 if (btmp == NULL) in rand_serial()
1621 if (!BN_rand(btmp, SERIAL_RAND_BITS, BN_RAND_TOP_ANY, BN_RAND_BOTTOM_ANY)) in rand_serial()
1623 if (ai && !BN_to_ASN1_INTEGER(btmp, ai)) in rand_serial()
1630 if (btmp != b) in rand_serial()
1631 BN_free(btmp); in rand_serial()