globus_gss_assist - Man Page
Name
globus_gss_assist — Globus GSS Assist
— Convenience Functions for GSSAPI.
Synopsis
Topics
Activation
Module Activation.
Token Transport
Send and Receive Security Tokens.
Credential Management
Acquire Credential.
Security Context Management
Security Context Creation and Use.
GSSAPI Result Status Strings
Display Error Status from a GSSAPI Result.
Gridmap Authorization
Gridmap Authorization and Local User Mapping.
GSI GSS Assist Constants
Constant Definitions.
Functions
globus_result_t globus_gss_assist_authorization_host_name (char *hostname, gss_name_t *authorization_hostname)
OM_uint32 globus_gss_assist_wrap_send (OM_uint32 *minor_status, const gss_ctx_id_t context_handle, char *data, size_t length, int *token_status, int(*gss_assist_send_token)(void *, void *, size_t), void *gss_assist_send_context, FILE *fperr)
Wrap.
Detailed Description
Convenience Functions for GSSAPI.
The GSS Assist code provides convenience functions for using the Globus GSS-API.
This API includes
- Activation
- Credential Management
- Security Context Management
- Gridmap Authorization
- Token Transport
- GSSAPI Result Status Strings
- GSI GSS Assist Constants
Function Documentation
OM_uint32 globus_gss_assist_wrap_send (OM_uint32 * minor_status, const gss_ctx_id_t context_handle, char * data, size_t length, int * token_status, int(* gss_assist_send_token )(void *, void *, size_t), void * gss_assist_send_context, FILE * fperr)
Wrap.
- Parameters
minor_status GSSAPI return code. If the call was successful, the minor status is equal to GLOBUS_SUCCESS. Otherwise, it is an error object ID for which globus_error_get() and globus_object_free() can be used to get and destroy it.
context_handle the context.
data pointer to application data to wrap and send
length length of the data array
token_status assist routine get/send token status
gss_assist_send_token a send_token routine
gss_assist_send_context first arg for the send_token
fperr file handle to write error message to.- Returns
GSS_S_COMPLETE on success Other GSSAPI errors on failure.
- See also
gss_wrap()
Author
Generated automatically by Doxygen for globus_gss_assist from the source code.
Referenced By
The man pages globus_gss_assist_authorization_host_name(3) and globus_gss_assist_wrap_send(3) are aliases of globus_gss_assist(3).