Returns the currently registered authentication hook function.
Examples
# Returns NULL when no hook has been set
csdb_get_auth_hook()
#> NULL
if (FALSE) { # \dontrun{
# Register a hook and then retrieve it
csdb_set_auth_hook(function() system2("/bin/kinit", stdout = NULL))
hook <- csdb_get_auth_hook()
is.function(hook)
} # }
