1195972f6Sopenharmony_ci/* 2195972f6Sopenharmony_ci * chap_ms.h - Challenge Handshake Authentication Protocol definitions. 3195972f6Sopenharmony_ci * 4195972f6Sopenharmony_ci * Copyright (c) 1995 Eric Rosenquist. All rights reserved. 5195972f6Sopenharmony_ci * 6195972f6Sopenharmony_ci * Redistribution and use in source and binary forms, with or without 7195972f6Sopenharmony_ci * modification, are permitted provided that the following conditions 8195972f6Sopenharmony_ci * are met: 9195972f6Sopenharmony_ci * 10195972f6Sopenharmony_ci * 1. Redistributions of source code must retain the above copyright 11195972f6Sopenharmony_ci * notice, this list of conditions and the following disclaimer. 12195972f6Sopenharmony_ci * 13195972f6Sopenharmony_ci * 2. Redistributions in binary form must reproduce the above copyright 14195972f6Sopenharmony_ci * notice, this list of conditions and the following disclaimer in 15195972f6Sopenharmony_ci * the documentation and/or other materials provided with the 16195972f6Sopenharmony_ci * distribution. 17195972f6Sopenharmony_ci * 18195972f6Sopenharmony_ci * 3. The name(s) of the authors of this software must not be used to 19195972f6Sopenharmony_ci * endorse or promote products derived from this software without 20195972f6Sopenharmony_ci * prior written permission. 21195972f6Sopenharmony_ci * 22195972f6Sopenharmony_ci * THE AUTHORS OF THIS SOFTWARE DISCLAIM ALL WARRANTIES WITH REGARD TO 23195972f6Sopenharmony_ci * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 24195972f6Sopenharmony_ci * AND FITNESS, IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY 25195972f6Sopenharmony_ci * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 26195972f6Sopenharmony_ci * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN 27195972f6Sopenharmony_ci * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING 28195972f6Sopenharmony_ci * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 29195972f6Sopenharmony_ci * 30195972f6Sopenharmony_ci * $Id: chap_ms.h,v 1.13 2004/11/15 22:13:26 paulus Exp $ 31195972f6Sopenharmony_ci */ 32195972f6Sopenharmony_ci 33195972f6Sopenharmony_ci#include "netif/ppp/ppp_opts.h" 34195972f6Sopenharmony_ci#if PPP_SUPPORT && MSCHAP_SUPPORT /* don't build if not configured for use in lwipopts.h */ 35195972f6Sopenharmony_ci 36195972f6Sopenharmony_ci#ifndef CHAPMS_INCLUDE 37195972f6Sopenharmony_ci#define CHAPMS_INCLUDE 38195972f6Sopenharmony_ci 39195972f6Sopenharmony_ciextern const struct chap_digest_type chapms_digest; 40195972f6Sopenharmony_ciextern const struct chap_digest_type chapms2_digest; 41195972f6Sopenharmony_ci 42195972f6Sopenharmony_ci#endif /* CHAPMS_INCLUDE */ 43195972f6Sopenharmony_ci 44195972f6Sopenharmony_ci#endif /* PPP_SUPPORT && MSCHAP_SUPPORT */ 45