store the keytab in a file, the types name is KEYFILE. The residual part is a filename.
keyfile
store the keytab in a AFS keyfile (usually /usr/afs/etc/KeyFile), the types name is AFSKEYFILE. The residual part is a filename.
krb4
the keytab is a Kerberos 4 srvtab that is on-the-fly converted to a keytab. The types name is krb4. The residual part is a filename.
memory
The keytab is stored in a memory segment. This allows sensitive and/or temporary data not to be stored on disk. The types name is MEMORY. There are no residual part, the only pointer back to the keytab is the id returned by krb5_kt_resolve.
krb5_keytab_entry holds all data for an entry in a keytab file, like principal name, key-type, key, key-version number, etc. krb5_kt_cursor holds the current position that is used when iterating through a keytab entry with krb5_kt_start_seq_get, krb5_kt_next_entry, and krb5_kt_end_seq_get.
krb5_kt_ops contains the different operations that can be done to a keytab. This structure is normally only used when doing a new keytab-type implementation.
krb5_kt_resolve is the equivalent of an open(2) on keytab. Resolve the keytab name in name into a keytab in id. Returns 0 or an error. The opposite of krb5_kt_resolve is krb5_kt_close. krb5_kt_close frees all resources allocated to the keytab.
krb5_kt_default sets the argument id to the default keytab. Returns 0 or an error.
krb5_kt_default_name copy the name of the default keytab into name. Return 0 or KRB5_CONFIG_NOTENUFSPACE if namesize is too short.
krb5_kt_add_entry Add a new entry to the keytab id. KRB5_KT_NOWRITE is returned if the keytab is a readonly keytab.
krb5_kt_compare compares the passed in entry against principal, vno, and enctype. Any of principal, vno or enctype might be 0 which acts as a wildcard. Return TRUE if they compare the same, FALSE otherwise.
krb5_kt_copy_entry_contents copies the contents of in into out. Returns 0 or an error.
krb5_kt_get_name retrieves the name of the keytab keytab into name, namesize. Returns 0 or an error.
krb5_kt_get_type retrieves the type of the keytab keytab and store the prefix/name for type of the keytab into prefix, prefixsize. The prefix will have the maximum length of KRB5_KT_PREFIX_MAX_LEN (including terminating NUL). Returns 0 or an error.
krb5_kt_free_entry frees the contents of entry.
krb5_kt_start_seq_get sets cursor to point at the beginning of id. Returns 0 or an error.
krb5_kt_next_entry gets the next entry from id pointed to by cursor and advance the cursor. Returns 0 or an error.
krb5_kt_end_seq_get releases all resources associated with cursor.
krb5_kt_get_entry retrieves the keytab entry for principal, kvno, enctype into entry from the keytab id. Returns 0 or an error.
krb5_kt_read_service_key reads the key identified by ( principal, vno, enctype) from the keytab in keyprocarg (the default if == NULL) into *key. Returns 0 or an error.
krb5_kt_remove_entry removes the entry entry from the keytab id. Returns 0 or an error.
krb5_kt_register registers a new keytab type ops. Returns 0 or an error.