Display author box on just certain category posts?

Use get_post_type() to check the correct post type and in_category( 'blog' ) to check the category:

function get_author_bio ($content=""){

    if ( 'post' !== get_post_type() or ! in_category( 'blog' ) )
        return $content;