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