Lines Matching refs:btmp
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()
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()
1668 BN_free(btmp); in rand_serial()