GSSAPI routines needed to Kerberize an application

FIGURE 5

gss_import_name
used to convert a text principal name to internal GSS format
gss_init_sec_context
called by a client to generate and process security tokens for communicating with the server
gss_acquire_cred
called by server to obtain the correct service key from the local key table
gss_accept_sec_context
called by the server to process and generate security tokens for communicating with the client
gss_wrap
called to protect data with a cryptographic checksum or encryption
gss_unwrap
called to verify a message's integrity and to decrypt it if necessary
gss_release_buffer
called to free a buffer returned by GSSAPI
gss_delete_sec_context
called to end the security context
gss_release_name
called to free a name returned by gss_import_name
gss_release_cred
called to free a credential returned by gss_acquire_cred
gss_display_status
called to display textual error messages returned by GSSAPI