Displaying 1 result from an estimated 1 matches for "ktbase".
Did you mean:
qtbase
2004 Jan 05
1
Samba requesting nonexistent keytab type?
...exactly where the problem is occuring (I think). The krb5_kt_resolve
immediately before is returning KRB5_KT_UNKNOWN_TYPE. Doing some looking
at the source for MIT krb5, and a bit of reading, it looks like there
are two key table types defined: FILE and WRFILE. Specifically, in
lib/krb5/keytab/ktbase.c:krb5_kt_resolve(112), it cycles through a list
of registered key table types, and MEMORY is definitely not one of them.
It has no associated krb5_kt_ops struct, at least not one that I can
locate.
However, this definition _does_ exist in Heimdal Kerberos 0.6
(keytab_memory.c), along with a c...