1*7348b5c5SDavid van Moolenbroek /* $NetBSD: auth.h,v 1.11 2005/02/06 05:53:07 perry Exp $ */ 2*7348b5c5SDavid van Moolenbroek 3*7348b5c5SDavid van Moolenbroek /*- 4*7348b5c5SDavid van Moolenbroek * Copyright (c) 1991, 1993 5*7348b5c5SDavid van Moolenbroek * The Regents of the University of California. All rights reserved. 6*7348b5c5SDavid van Moolenbroek * 7*7348b5c5SDavid van Moolenbroek * Redistribution and use in source and binary forms, with or without 8*7348b5c5SDavid van Moolenbroek * modification, are permitted provided that the following conditions 9*7348b5c5SDavid van Moolenbroek * are met: 10*7348b5c5SDavid van Moolenbroek * 1. Redistributions of source code must retain the above copyright 11*7348b5c5SDavid van Moolenbroek * notice, this list of conditions and the following disclaimer. 12*7348b5c5SDavid van Moolenbroek * 2. Redistributions in binary form must reproduce the above copyright 13*7348b5c5SDavid van Moolenbroek * notice, this list of conditions and the following disclaimer in the 14*7348b5c5SDavid van Moolenbroek * documentation and/or other materials provided with the distribution. 15*7348b5c5SDavid van Moolenbroek * 3. Neither the name of the University nor the names of its contributors 16*7348b5c5SDavid van Moolenbroek * may be used to endorse or promote products derived from this software 17*7348b5c5SDavid van Moolenbroek * without specific prior written permission. 18*7348b5c5SDavid van Moolenbroek * 19*7348b5c5SDavid van Moolenbroek * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 20*7348b5c5SDavid van Moolenbroek * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21*7348b5c5SDavid van Moolenbroek * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22*7348b5c5SDavid van Moolenbroek * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 23*7348b5c5SDavid van Moolenbroek * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24*7348b5c5SDavid van Moolenbroek * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25*7348b5c5SDavid van Moolenbroek * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26*7348b5c5SDavid van Moolenbroek * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27*7348b5c5SDavid van Moolenbroek * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28*7348b5c5SDavid van Moolenbroek * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29*7348b5c5SDavid van Moolenbroek * SUCH DAMAGE. 30*7348b5c5SDavid van Moolenbroek * 31*7348b5c5SDavid van Moolenbroek * from: @(#)auth.h 8.1 (Berkeley) 6/4/93 32*7348b5c5SDavid van Moolenbroek */ 33*7348b5c5SDavid van Moolenbroek 34*7348b5c5SDavid van Moolenbroek /* 35*7348b5c5SDavid van Moolenbroek * Copyright (C) 1990 by the Massachusetts Institute of Technology 36*7348b5c5SDavid van Moolenbroek * 37*7348b5c5SDavid van Moolenbroek * Export of this software from the United States of America is assumed 38*7348b5c5SDavid van Moolenbroek * to require a specific license from the United States Government. 39*7348b5c5SDavid van Moolenbroek * It is the responsibility of any person or organization contemplating 40*7348b5c5SDavid van Moolenbroek * export to obtain such a license before exporting. 41*7348b5c5SDavid van Moolenbroek * 42*7348b5c5SDavid van Moolenbroek * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and 43*7348b5c5SDavid van Moolenbroek * distribute this software and its documentation for any purpose and 44*7348b5c5SDavid van Moolenbroek * without fee is hereby granted, provided that the above copyright 45*7348b5c5SDavid van Moolenbroek * notice appear in all copies and that both that copyright notice and 46*7348b5c5SDavid van Moolenbroek * this permission notice appear in supporting documentation, and that 47*7348b5c5SDavid van Moolenbroek * the name of M.I.T. not be used in advertising or publicity pertaining 48*7348b5c5SDavid van Moolenbroek * to distribution of the software without specific, written prior 49*7348b5c5SDavid van Moolenbroek * permission. M.I.T. makes no representations about the suitability of 50*7348b5c5SDavid van Moolenbroek * this software for any purpose. It is provided "as is" without express 51*7348b5c5SDavid van Moolenbroek * or implied warranty. 52*7348b5c5SDavid van Moolenbroek */ 53*7348b5c5SDavid van Moolenbroek 54*7348b5c5SDavid van Moolenbroek #ifndef __AUTH__ 55*7348b5c5SDavid van Moolenbroek #define __AUTH__ 56*7348b5c5SDavid van Moolenbroek 57*7348b5c5SDavid van Moolenbroek #define AUTH_REJECT 0 /* Rejected */ 58*7348b5c5SDavid van Moolenbroek #define AUTH_UNKNOWN 1 /* We don't know who he is, but he's okay */ 59*7348b5c5SDavid van Moolenbroek #define AUTH_OTHER 2 /* We know him, but not his name */ 60*7348b5c5SDavid van Moolenbroek #define AUTH_USER 3 /* We know he name */ 61*7348b5c5SDavid van Moolenbroek #define AUTH_VALID 4 /* We know him, and he needs no password */ 62*7348b5c5SDavid van Moolenbroek 63*7348b5c5SDavid van Moolenbroek typedef struct XauthP { 64*7348b5c5SDavid van Moolenbroek int type; 65*7348b5c5SDavid van Moolenbroek int way; 66*7348b5c5SDavid van Moolenbroek int (*init)(struct XauthP *, int); 67*7348b5c5SDavid van Moolenbroek int (*send)(struct XauthP *); 68*7348b5c5SDavid van Moolenbroek void (*is)(struct XauthP *, unsigned char *, int); 69*7348b5c5SDavid van Moolenbroek void (*reply)(struct XauthP *, unsigned char *, int); 70*7348b5c5SDavid van Moolenbroek int (*status)(struct XauthP *, char *, size_t, int); 71*7348b5c5SDavid van Moolenbroek void (*printsub)(unsigned char *, int, unsigned char *, int); 72*7348b5c5SDavid van Moolenbroek } Authenticator; 73*7348b5c5SDavid van Moolenbroek 74*7348b5c5SDavid van Moolenbroek #include "auth-proto.h" 75*7348b5c5SDavid van Moolenbroek 76*7348b5c5SDavid van Moolenbroek #define OPTS_FORWARD_CREDS 0x00000002 77*7348b5c5SDavid van Moolenbroek #define OPTS_FORWARDABLE_CREDS 0x00000001 78*7348b5c5SDavid van Moolenbroek 79*7348b5c5SDavid van Moolenbroek extern int auth_debug_mode; 80*7348b5c5SDavid van Moolenbroek #endif 81