181cb6ddcSMark Murray /*- 281cb6ddcSMark Murray * Copyright (c) 1991, 1993 381cb6ddcSMark Murray * The Regents of the University of California. All rights reserved. 481cb6ddcSMark Murray * 581cb6ddcSMark Murray * Redistribution and use in source and binary forms, with or without 681cb6ddcSMark Murray * modification, are permitted provided that the following conditions 781cb6ddcSMark Murray * are met: 881cb6ddcSMark Murray * 1. Redistributions of source code must retain the above copyright 981cb6ddcSMark Murray * notice, this list of conditions and the following disclaimer. 1081cb6ddcSMark Murray * 2. Redistributions in binary form must reproduce the above copyright 1181cb6ddcSMark Murray * notice, this list of conditions and the following disclaimer in the 1281cb6ddcSMark Murray * documentation and/or other materials provided with the distribution. 13*83129c0bSEd Maste * 3. Neither the name of the University nor the names of its contributors 1481cb6ddcSMark Murray * may be used to endorse or promote products derived from this software 1581cb6ddcSMark Murray * without specific prior written permission. 1681cb6ddcSMark Murray * 1781cb6ddcSMark Murray * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 1881cb6ddcSMark Murray * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1981cb6ddcSMark Murray * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2081cb6ddcSMark Murray * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 2181cb6ddcSMark Murray * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2281cb6ddcSMark Murray * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2381cb6ddcSMark Murray * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2481cb6ddcSMark Murray * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2581cb6ddcSMark Murray * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2681cb6ddcSMark Murray * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2781cb6ddcSMark Murray * SUCH DAMAGE. 2881cb6ddcSMark Murray * 2981cb6ddcSMark Murray * @(#)auth-proto.h 8.1 (Berkeley) 6/4/93 30ecece7e3SPeter Wemm * $FreeBSD$ 3181cb6ddcSMark Murray */ 3281cb6ddcSMark Murray 3381cb6ddcSMark Murray /* 3481cb6ddcSMark Murray * Copyright (C) 1990 by the Massachusetts Institute of Technology 3581cb6ddcSMark Murray * 3681cb6ddcSMark Murray * Export of this software from the United States of America is assumed 3781cb6ddcSMark Murray * to require a specific license from the United States Government. 3881cb6ddcSMark Murray * It is the responsibility of any person or organization contemplating 3981cb6ddcSMark Murray * export to obtain such a license before exporting. 4081cb6ddcSMark Murray * 4181cb6ddcSMark Murray * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and 4281cb6ddcSMark Murray * distribute this software and its documentation for any purpose and 4381cb6ddcSMark Murray * without fee is hereby granted, provided that the above copyright 4481cb6ddcSMark Murray * notice appear in all copies and that both that copyright notice and 4581cb6ddcSMark Murray * this permission notice appear in supporting documentation, and that 4681cb6ddcSMark Murray * the name of M.I.T. not be used in advertising or publicity pertaining 4781cb6ddcSMark Murray * to distribution of the software without specific, written prior 4881cb6ddcSMark Murray * permission. M.I.T. makes no representations about the suitability of 4981cb6ddcSMark Murray * this software for any purpose. It is provided "as is" without express 5081cb6ddcSMark Murray * or implied warranty. 5181cb6ddcSMark Murray */ 5281cb6ddcSMark Murray 538fa113e5SMark Murray #ifdef AUTHENTICATION 5481cb6ddcSMark Murray 558fa113e5SMark Murray Authenticator *findauthenticator(int, int); 568fa113e5SMark Murray 578fa113e5SMark Murray void auth_init(const char *, int); 588fa113e5SMark Murray int auth_cmd(int, char **); 598fa113e5SMark Murray void auth_request(void); 608fa113e5SMark Murray void auth_send(unsigned char *, int); 618fa113e5SMark Murray void auth_send_retry(void); 628fa113e5SMark Murray void auth_is(unsigned char *, int); 638fa113e5SMark Murray void auth_reply(unsigned char *, int); 648fa113e5SMark Murray void auth_finished(Authenticator *, int); 658fa113e5SMark Murray int auth_wait(char *); 668fa113e5SMark Murray void auth_disable_name(char *); 678fa113e5SMark Murray void auth_gen_printsub(unsigned char *, int, unsigned char *, int); 688fa113e5SMark Murray void auth_name(unsigned char *, int); 698fa113e5SMark Murray void auth_printsub(unsigned char *, int, unsigned char *, int); 708fa113e5SMark Murray int auth_sendname(unsigned char *, int); 718fa113e5SMark Murray void auth_encrypt_user(char *); 728fa113e5SMark Murray int auth_disable(char *); 738fa113e5SMark Murray int auth_enable(char *); 748fa113e5SMark Murray int auth_togdebug(int); 758fa113e5SMark Murray int auth_status(void); 768fa113e5SMark Murray 778fa113e5SMark Murray int getauthmask(char *, int *); 7881cb6ddcSMark Murray 7981cb6ddcSMark Murray #ifdef KRB4 808fa113e5SMark Murray int kerberos4_init(Authenticator *, int); 818fa113e5SMark Murray int kerberos4_send(Authenticator *); 828fa113e5SMark Murray void kerberos4_is(Authenticator *, unsigned char *, int); 838fa113e5SMark Murray void kerberos4_reply(Authenticator *, unsigned char *, int); 848fa113e5SMark Murray int kerberos4_status(Authenticator *, char *, int); 858fa113e5SMark Murray void kerberos4_printsub(unsigned char *, int, unsigned char *, int); 8681cb6ddcSMark Murray #endif 8781cb6ddcSMark Murray 8881cb6ddcSMark Murray #ifdef KRB5 898fa113e5SMark Murray int kerberos5_init(Authenticator *, int); 908fa113e5SMark Murray int kerberos5_send_mutual(Authenticator *); 918fa113e5SMark Murray int kerberos5_send_oneway(Authenticator *); 928fa113e5SMark Murray void kerberos5_is(Authenticator *, unsigned char *, int); 938fa113e5SMark Murray void kerberos5_reply(Authenticator *, unsigned char *, int); 948fa113e5SMark Murray int kerberos5_status(Authenticator *, char *, int level); 958fa113e5SMark Murray void kerberos5_printsub(unsigned char *, int, unsigned char *, int); 9681cb6ddcSMark Murray #endif 978fa113e5SMark Murray 980f8c8396SNick Sayer #ifdef SRA 998fa113e5SMark Murray int sra_init(Authenticator *, int); 1008fa113e5SMark Murray int sra_send(Authenticator *); 1018fa113e5SMark Murray void sra_is(Authenticator *, unsigned char *, int); 1028fa113e5SMark Murray void sra_reply(Authenticator *, unsigned char *, int); 1038fa113e5SMark Murray int sra_status(Authenticator *, char *, int); 1048fa113e5SMark Murray void sra_printsub(unsigned char *, int, unsigned char *, int); 1050f8c8396SNick Sayer #endif 1068fa113e5SMark Murray 10781cb6ddcSMark Murray #endif 108