Module Rpc_auth_gssapi

module Rpc_auth_gssapi: sig .. end
GSS-API for RPC authentication

type user_name_format = [ `Exported_name | `Plain_name | `Prefixed_name ] 
What to return as user name:
val server_auth_method : ?require_privacy:bool ->
?require_integrity:bool ->
?shared_context:bool ->
?acceptor_cred:Netgssapi.credential ->
?user_name_format:user_name_format ->
?seq_number_window:int ->
Netgssapi.gss_api -> Netgssapi.oid -> Rpc_server.auth_method
Creates an authentication method from a GSS-API interface. The OID selects the desired authentication method.

Options:


type support_level = [ `If_possible | `None | `Required ] 
type user_name_interpretation = [ `Exported_name | `Plain_name of Netgssapi.oid | `Prefixed_name ] 
val client_auth_method : ?privacy:support_level ->
?integrity:support_level ->
?user_name_interpretation:user_name_interpretation ->
Netgssapi.gss_api -> Netgssapi.oid -> Rpc_client.auth_method
Creates an authentication method from a GSS-API interface. The OID selects the desired authentication method.

Options:


module Debug: sig .. end