xref: /freebsd/crypto/krb5/src/kadmin/ktutil/ktutil_ct.ct (revision 7f2fe78b9dd5f51c821d771b63d2e096f6fd49e9)
1# Copyright 1995 by the Massachusetts Institute of Technology.
2# All Rights Reserved.
3#
4# Export of this software from the United States of America may
5#   require a specific license from the United States Government.
6#   It is the responsibility of any person or organization contemplating
7#   export to obtain such a license before exporting.
8#
9# WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
10# distribute this software and its documentation for any purpose and
11# without fee is hereby granted, provided that the above copyright
12# notice appear in all copies and that both that copyright notice and
13# this permission notice appear in supporting documentation, and that
14# the name of M.I.T. not be used in advertising or publicity pertaining
15# to distribution of the software without specific, written prior
16# permission.  Furthermore if you modify this software you must label
17# your software as modified software and not distribute it in such a
18# fashion that it might be confused with the original M.I.T. software.
19# M.I.T. makes no representations about the suitability of
20# this software for any purpose.  It is provided "as is" without express
21# or implied warranty.
22#
23#
24# Command table for ktutil
25#
26
27command_table ktutil_cmds;
28
29request ktutil_clear_list, "Clear the current keylist.",
30	clear_list, clear;
31
32request ktutil_read_v5, "Read a krb5 keytab into the current keylist.",
33	read_kt, rkt;
34
35request ktutil_read_v4, "Deprecated and removed.",
36	read_st, rst;
37
38request ktutil_write_v5, "Write the current keylist to a krb5 keytab.",
39	write_kt, wkt;
40
41request ktutil_write_v4, "Deprecated and removed.",
42	write_st, wst;
43
44request ktutil_add_entry, "Add an entry to the current keylist.",
45	add_entry, addent;
46
47request ktutil_delete_entry, "Delete an entry from the current keylist.",
48	delete_entry, delent;
49
50request ktutil_list, "List the current keylist.",
51	list, l;
52
53request ss_list_requests, "List available requests.",
54	list_requests, lr, "?";
55
56request ss_quit, "Exit program.",
57	quit, exit, q;
58
59end;
60