Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gss_release_cred(3gss) [opensolaris man page]

gss_release_cred(3GSS)				  Generic Security Services API Library Functions			    gss_release_cred(3GSS)

NAME
gss_release_cred - discard a credential handle SYNOPSIS
cc [ flag... ] file... -lgss [ library... ] #include <gssapi/gssapi.h> OM_uint32 gss_release_cred(OM_uint32 *minor_status, gss_cred_id_t *cred_handle); DESCRIPTION
The gss_release_cred() function informs the GSS-API that the specified credential handle is no longer required by the application and frees the associated resources. The cred_handle parameter is set to GSS_C_NO_CREDENTIAL when this call completes successfully. PARAMETERS
The parameter descriptions for gss_release_cred() follow: minor_status A mechanism specific status code. cred_handle An opaque handle that identifies the credential to be released. If GSS_C_NO_CREDENTIAL is specified, the gss_release_cred() function will complete successfully, but it will do nothing. ERRORS
gss_release_cred() may return the following status codes: GSS_S_COMPLETE Successful completion. GSS_S_NO_CRED The referenced credentials cannot be accessed. GSS_S_FAILURE The underlying mechanism detected an error for which no specific GSS status code is defined. The mechanism-specific sta- tus code reported by means of the minor_status parameter details the error condition. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWgss (32-bit) | +-----------------------------+-----------------------------+ | |SUNWgssx (64-bit) | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ SEE ALSO
attributes(5) Solaris Security for Developers Guide SunOS 5.11 15 Jan 2003 gss_release_cred(3GSS)

Check Out this Related Man Page

gss_inquire_cred(3GSS)				  Generic Security Services API Library Functions			    gss_inquire_cred(3GSS)

NAME
gss_inquire_cred - obtain information about a credential SYNOPSIS
cc [ flag... ] file... -lgss [ library... ] #include <gssapi/gssapi.h> OM_uint32 gss_inquire_cred(OM_uint32 *minor_status, const gss_cred_id_t cred_handle, gss_name_t *name, OM_uint32 *lifetime, gss_cred_usage_t *cred_usage, gss_OID_set *mechanisms); PARAMETERS
The parameter descriptions for gss_inquire_cred() follow: minor_status Mechanism specific status code. cred_handle Handle that refers to the target credential. Specify GSS_C_NO_CREDENTIAL to inquire about the default initiator principal. name Name of the identity asserted by the credential. Any storage associated with this name should be freed by the application after use by a call to gss_release_name(3GSS). lifetime Number of seconds for which the credential remains valid. If the credential has expired, this parameter will be set to zero. Specify NULL if the parameter is not required. cred_usage Flag that indicates how a credential is used. The cred_usage parameter may contain one of the following values: GSS_C_INI- TIATE, GSS_C_ACCEPT, or GSS_C_BOTH. Specify NULL if this parameter is not required. mechanisms Set of mechanisms supported by the credential. Storage for the returned OID-set must be freed by the application after use by a call to gss_release_oid_set(3GSS). Specify NULL if this parameter is not required. DESCRIPTION
Use the gss_inquire_cred() function to obtain information about a credential. RETURN VALUES
The gss_inquire_cred() function can return the following status codes: GSS_S_COMPLETE Successful completion. GSS_S_NO_CRED The referenced credentials could not be accessed. GSS_S_DEFECTIVE_CREDENTIAL The referenced credentials were invalid. GSS_S_CREDENTIALS_EXPIRED The referenced credentials have expired. If the lifetime parameter was not passed as NULL, it will be set to 0. GSS_S_FAILURE The underlying mechanism detected an error for which no specific GSS status code is defined. The mechanism- specific status code reported by means of the minor_status parameter details the error condition. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ SEE ALSO
gss_release_name(3GSS), gss_release_oid_set(3GSS), libgss(3LIB), attributes(5) Solaris Security for Developers Guide SunOS 5.10 30 Jan 2004 gss_inquire_cred(3GSS)
Man Page