diff options
author | Simo Sorce <simo@redhat.com> | 2012-02-06 21:08:42 -0500 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2012-02-07 14:51:00 -0500 |
commit | ce22fdafba5e94228e4c98c5cf3abf67d7646c49 (patch) | |
tree | aabc9cf241a4785ee0528af858a0b1bcd4b9b5ec /proxy/src/mechglue/gssapi_gpm.h | |
parent | 1dd267f3196295c7883985e9dac6c5c5afda2d3f (diff) | |
download | gss-proxy-ce22fdafba5e94228e4c98c5cf3abf67d7646c49.tar.gz gss-proxy-ce22fdafba5e94228e4c98c5cf3abf67d7646c49.tar.xz gss-proxy-ce22fdafba5e94228e4c98c5cf3abf67d7646c49.zip |
Implement import_and_canon_name mechglue functions family
Diffstat (limited to 'proxy/src/mechglue/gssapi_gpm.h')
-rw-r--r-- | proxy/src/mechglue/gssapi_gpm.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/proxy/src/mechglue/gssapi_gpm.h b/proxy/src/mechglue/gssapi_gpm.h index 020c1c6..304c218 100644 --- a/proxy/src/mechglue/gssapi_gpm.h +++ b/proxy/src/mechglue/gssapi_gpm.h @@ -120,4 +120,23 @@ OM_uint32 gpm_indicate_mechs_by_attrs(OM_uint32 *minor_status, gss_const_OID_set critical_mech_attrs, gss_OID_set *mechs); +OM_uint32 gpm_display_name(OM_uint32 *minor_status, + gss_name_t input_name, + gss_buffer_t output_name_buffer, + gss_OID *output_name_type); +OM_uint32 gpm_import_name(OM_uint32 *minor_status, + gss_buffer_t input_name_buffer, + gss_OID input_name_type, + gss_name_t *output_name); +OM_uint32 gpm_export_name(OM_uint32 *minor_status, + const gss_name_t input_name, + gss_buffer_t exported_name); +OM_uint32 gpm_duplicate_name(OM_uint32 *minor_status, + const gss_name_t input_name, + gss_name_t *dest_name); +OM_uint32 gpm_canonicalize_name(OM_uint32 *minor_status, + const gss_name_t input_name, + const gss_OID mech_type, + gss_name_t *output_name); + #endif /* _GSSAPI_GPM_H_ */ |