chap.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:4k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* chap.h - Cryptographic Handshake Authentication Protocol header */
  2. /* Copyright 1995 Wind River Systems, Inc. */
  3. /*
  4.  * Copyright (c) 1991 Gregory M. Christy
  5.  * All rights reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms are permitted
  8.  * provided that the above copyright notice and this paragraph are
  9.  * duplicated in all such forms and that any documentation,
  10.  * advertising materials, and other materials related to such
  11.  * distribution and use acknowledge that the software was developed
  12.  * by the author.
  13.  *
  14.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  15.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  16.  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  17.  */
  18. /*
  19. modification history
  20. --------------------
  21. 01a,13jan95,dzb  WRS-ize.
  22. */
  23. #ifndef __INCchaph
  24. #define __INCchaph
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. /* Code + ID + length */
  29. #define CHAP_HEADERLEN 4
  30. /* CHAP codes */
  31. #define CHAP_DIGEST_MD5 5 /* use MD5 algorithm */
  32. #define MD5_SIGNATURE_SIZE 16 /* 16 bytes in a MD5 message digest */
  33. #define CHAP_CHALLENGE 1
  34. #define CHAP_RESPONSE 2
  35. #define CHAP_SUCCESS 3
  36. #define CHAP_FAILURE     4
  37. /*
  38.  *  Challenge lengths (for challenges we send) and other limits.
  39.  */
  40. #define MIN_CHALLENGE_LENGTH 32
  41. #define MAX_CHALLENGE_LENGTH 64
  42. #define MAX_RESPONSE_LENGTH 16 /* sufficient for MD5 */
  43. /*
  44.  * Each interface is described by a chap structure.
  45.  */
  46. typedef struct chap_state {
  47.     int unit; /* Interface unit number */
  48.     int clientstate; /* Client state */
  49.     int serverstate; /* Server state */
  50.     u_char challenge[MAX_CHALLENGE_LENGTH]; /* last challenge string sent */
  51.     u_char chal_len; /* challenge length */
  52.     u_char chal_id; /* ID of last challenge */
  53.     u_char chal_type; /* hash algorithm for challenges */
  54.     u_char id; /* Current id */
  55.     char *chal_name; /* Our name to use with challenge */
  56.     int chal_interval; /* Time until we challenge peer again */
  57.     int timeouttime; /* Timeout time in seconds */
  58.     int max_transmits; /* Maximum # of challenge transmissions */
  59.     int chal_transmits; /* Number of transmissions of challenge */
  60.     int resp_transmits; /* Number of transmissions of response */
  61.     u_char response[MAX_RESPONSE_LENGTH]; /* Response to send */
  62.     u_char resp_length; /* length of response */
  63.     u_char resp_id; /* ID for response messages */
  64.     u_char resp_type; /* hash algorithm for responses */
  65.     char *resp_name; /* Our name to send with response */
  66. } chap_state;
  67. /*
  68.  * Client (peer) states.
  69.  */
  70. #define CHAPCS_INITIAL 0 /* Lower layer down, not opened */
  71. #define CHAPCS_CLOSED 1 /* Lower layer up, not opened */
  72. #define CHAPCS_PENDING 2 /* Auth us to peer when lower up */
  73. #define CHAPCS_LISTEN 3 /* Listening for a challenge */
  74. #define CHAPCS_RESPONSE 4 /* Sent response, waiting for status */
  75. #define CHAPCS_OPEN 5 /* We've received Success */
  76. /*
  77.  * Server (authenticator) states.
  78.  */
  79. #define CHAPSS_INITIAL 0 /* Lower layer down, not opened */
  80. #define CHAPSS_CLOSED 1 /* Lower layer up, not opened */
  81. #define CHAPSS_PENDING 2 /* Auth peer when lower up */
  82. #define CHAPSS_INITIAL_CHAL 3 /* We've sent the first challenge */
  83. #define CHAPSS_OPEN 4 /* We've sent a Success msg */
  84. #define CHAPSS_RECHALLENGE 5 /* We've sent another challenge */
  85. #define CHAPSS_BADAUTH 6 /* We've sent a Failure msg */
  86. /*
  87.  * Timeouts.
  88.  */
  89. #define CHAP_DEFTIMEOUT 3 /* Timeout time in seconds */
  90. #define CHAP_DEFTRANSMITS 10 /* max # times to send challenge */
  91. extern void ChapInit __ARGS((int));
  92. extern void ChapAuthWithPeer __ARGS((int, char *, int));
  93. extern void ChapAuthPeer __ARGS((int, char *, int));
  94. extern void ChapLowerUp __ARGS((int));
  95. extern void ChapLowerDown __ARGS((int));
  96. extern void ChapInput __ARGS((int, u_char *, int));
  97. extern void ChapProtocolReject __ARGS((int));
  98. extern int  ChapPrintPkt __ARGS((u_char *, int,
  99.   void (*) __ARGS((void *, char *, ...)), void *));
  100. #ifdef __cplusplus
  101. }
  102. #endif
  103.  
  104. #endif  /* __INCchaph */