diff --git a/kadmin/kadmin.c b/kadmin/kadmin.c index 47e56f714..85415b7f6 100644 --- a/kadmin/kadmin.c +++ b/kadmin/kadmin.c @@ -120,6 +120,10 @@ static SL_cmd commands[] = { "Deletes all principals matching the expressions." }, { "del_entry" }, + { + "del_enctype", del_enctype, "del_enctype principal enctype...", + "Delete all the mentioned enctypes for principal." + }, { "ext_keytab", ext_keytab, "ext_keytab expression...", "Extracts the keys of all principals matching the expressions,\n" diff --git a/kadmin/kadmin_locl.h b/kadmin/kadmin_locl.h index 1c23b02cc..220804012 100644 --- a/kadmin/kadmin_locl.h +++ b/kadmin/kadmin_locl.h @@ -96,6 +96,7 @@ extern void * kadm_handle; DECL(add_new_key); DECL(cpw_entry); DECL(del_entry); +DECL(del_enctype); DECL(exit_kadmin); DECL(ext_keytab); DECL(get_entry);