1 |
786 |
skrzyp |
//==========================================================================
|
2 |
|
|
//
|
3 |
|
|
// include/chap_ms.h
|
4 |
|
|
//
|
5 |
|
|
//==========================================================================
|
6 |
|
|
// ####ECOSGPLCOPYRIGHTBEGIN####
|
7 |
|
|
// -------------------------------------------
|
8 |
|
|
// This file is part of eCos, the Embedded Configurable Operating System.
|
9 |
|
|
// Copyright (C) 2003 Free Software Foundation, Inc.
|
10 |
|
|
//
|
11 |
|
|
// eCos is free software; you can redistribute it and/or modify it under
|
12 |
|
|
// the terms of the GNU General Public License as published by the Free
|
13 |
|
|
// Software Foundation; either version 2 or (at your option) any later
|
14 |
|
|
// version.
|
15 |
|
|
//
|
16 |
|
|
// eCos is distributed in the hope that it will be useful, but WITHOUT
|
17 |
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
18 |
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
19 |
|
|
// for more details.
|
20 |
|
|
//
|
21 |
|
|
// You should have received a copy of the GNU General Public License
|
22 |
|
|
// along with eCos; if not, write to the Free Software Foundation, Inc.,
|
23 |
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
24 |
|
|
//
|
25 |
|
|
// As a special exception, if other files instantiate templates or use
|
26 |
|
|
// macros or inline functions from this file, or you compile this file
|
27 |
|
|
// and link it with other works to produce a work based on this file,
|
28 |
|
|
// this file does not by itself cause the resulting work to be covered by
|
29 |
|
|
// the GNU General Public License. However the source code for this file
|
30 |
|
|
// must still be made available in accordance with section (3) of the GNU
|
31 |
|
|
// General Public License v2.
|
32 |
|
|
//
|
33 |
|
|
// This exception does not invalidate any other reasons why a work based
|
34 |
|
|
// on this file might be covered by the GNU General Public License.
|
35 |
|
|
// -------------------------------------------
|
36 |
|
|
// ####ECOSGPLCOPYRIGHTEND####
|
37 |
|
|
// ####BSDALTCOPYRIGHTBEGIN####
|
38 |
|
|
// -------------------------------------------
|
39 |
|
|
// Portions of this software may have been derived from FreeBSD, OpenBSD,
|
40 |
|
|
// or other sources, and if so are covered by the appropriate copyright
|
41 |
|
|
// and license included herein.
|
42 |
|
|
// -------------------------------------------
|
43 |
|
|
// ####BSDALTCOPYRIGHTEND####
|
44 |
|
|
//==========================================================================
|
45 |
|
|
|
46 |
|
|
/*
|
47 |
|
|
* chap.h - Challenge Handshake Authentication Protocol definitions.
|
48 |
|
|
*
|
49 |
|
|
* Copyright (c) 1995 Eric Rosenquist, Strata Software Limited.
|
50 |
|
|
* http://www.strataware.com/
|
51 |
|
|
*
|
52 |
|
|
* All rights reserved.
|
53 |
|
|
*
|
54 |
|
|
* Redistribution and use in source and binary forms are permitted
|
55 |
|
|
* provided that the above copyright notice and this paragraph are
|
56 |
|
|
* duplicated in all such forms and that any documentation,
|
57 |
|
|
* advertising materials, and other materials related to such
|
58 |
|
|
* distribution and use acknowledge that the software was developed
|
59 |
|
|
* by Eric Rosenquist. The name of the author may not be used to
|
60 |
|
|
* endorse or promote products derived from this software without
|
61 |
|
|
* specific prior written permission.
|
62 |
|
|
*
|
63 |
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
64 |
|
|
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
65 |
|
|
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
66 |
|
|
*
|
67 |
|
|
* $FreeBSD: src/usr.sbin/pppd/chap_ms.h,v 1.5 1999/08/28 01:19:02 peter Exp $
|
68 |
|
|
*/
|
69 |
|
|
|
70 |
|
|
#ifndef __CHAPMS_INCLUDE__
|
71 |
|
|
|
72 |
|
|
#define MD4_SIGNATURE_SIZE 16 /* 16 bytes in a MD4 message digest */
|
73 |
|
|
#define MAX_NT_PASSWORD 256 /* Maximum number of (Unicode) chars in an NT password */
|
74 |
|
|
|
75 |
|
|
void ChapMS __P((chap_state *, char *, int, char *, int));
|
76 |
|
|
|
77 |
|
|
#define __CHAPMS_INCLUDE__
|
78 |
|
|
#endif /* __CHAPMS_INCLUDE__ */
|