"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_resolve (krb5_context context, const char *name, krb5_keytab *id)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_default_name (krb5_context context, char *name, size_t namesize)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_default_modify_name (krb5_context context, char *name, size_t namesize)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_default (krb5_context context, krb5_keytab *id)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_read_service_key (krb5_context context, krb5_pointer keyprocarg, krb5_principal principal, krb5_kvno vno, krb5_enctype enctype, krb5_keyblock **key)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_get_type (krb5_context context, krb5_keytab keytab, char *prefix, size_t prefixsize)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_get_name (krb5_context context, krb5_keytab keytab, char *name, size_t namesize)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_get_full_name (krb5_context context, krb5_keytab keytab, char **str)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_close (krb5_context context, krb5_keytab id)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_destroy (krb5_context context, krb5_keytab id)"
"KRB5_LIB_FUNCTION krb5_boolean KRB5_LIB_CALL krb5_kt_compare (krb5_context context, krb5_keytab_entry *entry, krb5_const_principal principal, krb5_kvno vno, krb5_enctype enctype)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_get_entry (krb5_context context, krb5_keytab id, krb5_const_principal principal, krb5_kvno kvno, krb5_enctype enctype, krb5_keytab_entry *entry)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_copy_entry_contents (krb5_context context, const krb5_keytab_entry *in, krb5_keytab_entry *out)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_free_entry (krb5_context context, krb5_keytab_entry *entry)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_start_seq_get (krb5_context context, krb5_keytab id, krb5_kt_cursor *cursor)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_next_entry (krb5_context context, krb5_keytab id, krb5_keytab_entry *entry, krb5_kt_cursor *cursor)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_end_seq_get (krb5_context context, krb5_keytab id, krb5_kt_cursor *cursor)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_add_entry (krb5_context context, krb5_keytab id, krb5_keytab_entry *entry)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_remove_entry (krb5_context context, krb5_keytab id, krb5_keytab_entry *entry)"
"KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL krb5_kt_have_content (krb5_context context, krb5_keytab id)"
Parameters
context a Keberos context.
id a keytab.
entry the entry to add
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
id keytab to close.
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
entry an entry to match with.
principal principal to match, NULL matches all principals.
vno key version to match, 0 matches all key version numbers.
enctype encryption type to match, 0 matches all encryption types.
Returns
Return TRUE or match, FALSE if not matched.
Parameters
context a Keberos context.
in the keytab entry to copy.
out the copy of the keytab entry, free with krb5_kt_free_entry().
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
id the new default keytab.
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
name buffer where the name will be written
namesize length of name
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
name buffer where the name will be written
namesize length of name
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
id keytab to destroy.
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
id a keytab.
cursor the cursor to free.
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
entry the entry to free
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
id a keytab.
principal principal to match, NULL matches all principals.
kvno key version to match, 0 matches all key version numbers.
enctype encryption type to match, 0 matches all encryption types.
entry the returned entry, free with krb5_kt_free_entry().
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
keytab keytab to get name for.
str the name of the keytab name, usee krb5_xfree() to free the string. On error, *str is set to NULL.
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
keytab the keytab to get the name for.
name name buffer.
namesize size of name buffer.
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
keytab the keytab to get the prefix for
prefix prefix buffer
prefixsize length of prefix buffer
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
id a keytab.
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
id a keytab.
entry the returned entry, free with krb5_kt_free_entry().
cursor the cursor of the iteration.
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
keyprocarg
principal
vno
enctype
key
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
ops a backend to register.
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
id a keytab.
entry the entry to remove
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
name name to resolve
id resulting keytab, free with krb5_kt_close().
Returns
Return an error code or 0, see krb5_get_error_message().
Parameters
context a Keberos context.
id a keytab.
cursor a newly allocated cursor, free with krb5_kt_end_seq_get().
Returns
Return an error code or 0, see krb5_get_error_message().
Generated automatically by Doxygen for Heimdal Kerberos 5 library from the source code.