BIO_find_type
BIO *mbio = BIO_find_type(chain, BIO_TYPE_CIPHER);
mbio = BIO_find_type(cmsbio, BIO_TYPE_MEM);
chain = BIO_find_type(chain, BIO_TYPE_MD);
if ((btmp == NULL) || ((btmp = BIO_find_type(btmp, BIO_TYPE_MD)) == NULL)) {
bio = BIO_find_type(bio, BIO_TYPE_MD);
btmp = BIO_find_type(bio, BIO_TYPE_MEM);
BIO *BIO_find_type(BIO *b, int bio_type);
t = BIO_find_type(t, BIO_TYPE_SSL);
f = BIO_find_type(f, BIO_TYPE_SSL);
r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR);
r = BIO_find_type(b, BIO_TYPE_DESCRIPTOR);
if (!TEST_ptr_eq(BIO_find_type(bio3, BIO_TYPE_MEM), membio)
|| !TEST_ptr_eq(BIO_find_type(bio3, id), bio1))
if (!TEST_ptr_null(BIO_find_type(bio3, BIO_TYPE_NONE)))
if (!TEST_ptr_eq(BIO_find_type(bio3, BIO_TYPE_FILTER), bio3))