1 #pragma ident "%Z%%M% %I% %E% SMI" 2 3 /* 4 * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING 5 * 6 * Openvision retains the copyright to derivative works of 7 * this source code. Do *NOT* create a derivative of this 8 * source code before consulting with your legal department. 9 * Do *NOT* integrate *ANY* of this source code into another 10 * product before consulting with your legal department. 11 * 12 * For further information, read the top-level Openvision 13 * copyright which is contained in the top-level MIT Kerberos 14 * copyright. 15 * 16 * WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING 17 * 18 */ 19 20 21 /* 22 * kadmin/ktutil/ktutil.h 23 * 24 * Copyright 1995 by the Massachusetts Institute of Technology. 25 * All Rights Reserved. 26 * 27 * Export of this software from the United States of America may 28 * require a specific license from the United States Government. 29 * It is the responsibility of any person or organization contemplating 30 * export to obtain such a license before exporting. 31 * 32 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and 33 * distribute this software and its documentation for any purpose and 34 * without fee is hereby granted, provided that the above copyright 35 * notice appear in all copies and that both that copyright notice and 36 * this permission notice appear in supporting documentation, and that 37 * the name of M.I.T. not be used in advertising or publicity pertaining 38 * to distribution of the software without specific, written prior 39 * permission. Furthermore if you modify this software you must label 40 * your software as modified software and not distribute it in such a 41 * fashion that it might be confused with the original M.I.T. software. 42 * M.I.T. makes no representations about the suitability of 43 * this software for any purpose. It is provided "as is" without express 44 * or implied warranty. 45 * 46 */ 47 48 typedef struct _krb5_kt_list { 49 struct _krb5_kt_list *next; 50 krb5_keytab_entry *entry; 51 } *krb5_kt_list; 52 53 krb5_error_code ktutil_free_kt_list 54 (krb5_context, 55 krb5_kt_list); 56 57 krb5_error_code ktutil_delete 58 (krb5_context, 59 krb5_kt_list *, 60 int); 61 62 krb5_error_code ktutil_add 63 (krb5_context, 64 krb5_kt_list *, 65 char *, 66 krb5_kvno, 67 char *, 68 int); 69 70 krb5_error_code ktutil_read_keytab 71 (krb5_context, 72 char *, 73 krb5_kt_list *); 74 75 krb5_error_code ktutil_write_keytab 76 (krb5_context, 77 krb5_kt_list, 78 char *); 79 80 #ifdef KRB5_KRB4_COMPAT 81 krb5_error_code ktutil_read_srvtab 82 (krb5_context, 83 char *, 84 krb5_kt_list *); 85 krb5_error_code ktutil_write_srvtab 86 (krb5_context, 87 krb5_kt_list, 88 char *); 89 90 #endif 91