HomeSort by relevance Sort by last modified time
    Searched refs:chap (Results 1 - 23 of 23) sorted by null

  /external/syslinux/gpxe/src/crypto/
chap.c 27 #include <gpxe/chap.h>
31 * CHAP protocol
36 * Initialise CHAP challenge/response
38 * @v chap CHAP challenge/response
42 * Initialises a CHAP challenge/response structure. This routine
46 int chap_init ( struct chap_response *chap,
51 assert ( chap->digest == NULL );
52 assert ( chap->digest_context == NULL );
53 assert ( chap->response == NULL )
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
chap.h 6 * CHAP protocol
17 /** A CHAP response */
23 /** CHAP response */
25 /** Length of CHAP response */
29 extern int chap_init ( struct chap_response *chap,
31 extern void chap_update ( struct chap_response *chap, const void *data,
33 extern void chap_respond ( struct chap_response *chap );
34 extern void chap_finish ( struct chap_response *chap );
37 * Add identifier data to the CHAP challenge
39 * @v chap CHAP respons
    [all...]
iscsi.h 15 #include <gpxe/chap.h>
535 /** CHAP challenge (for target auth only)
538 * the CHAP identifier (CHAP_I) and the remainder as the CHAP
542 /** CHAP response (used for both initiator and target auth) */
543 struct chap_response chap; member in struct:iscsi_session
650 /** iSCSI session needs to send the CHAP response */
653 /** iSCSI session needs to send the mutual CHAP challenge */
  /external/ppp/pppd/
Android.mk 7 chap-md5.c \
8 chap-new.c \
Makefile.sol2 11 OBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap-new.o eap.o md5.o \
13 chap-md5.o session.o
38 # Uncomment to enable MS-CHAP
Makefile.linux 14 PPPDSRCS = main.c magic.c fsm.c lcp.c ipcp.c upap.c chap-new.c md5.c ccp.c \
16 demand.c utils.c tty.c eap.c chap-md5.c session.c
18 HEADERS = ccp.h session.h chap-new.h ecp.h fsm.h ipcp.h \
23 PPPDOBJS = main.o magic.o fsm.o lcp.o ipcp.o upap.o chap-new.o md5.o ccp.o \
25 eap.o chap-md5.o session.o
39 # MS-CHAP authentication protocol. Also, edit plugins/radius/Makefile.linux.
  /external/syslinux/core/lwip/src/netif/ppp/
chap.h 2 * chap.h - Network Challenge Handshake Authentication Protocol header file.
34 * chap.h - Challenge Handshake Authentication Protocol definitions.
65 * $Id: chap.h,v 1.6 2010/01/24 13:19:34 goldsimon Exp $
75 * CHAP codes.
81 #define MS_CHAP_RESPONSE_LEN 49 /* Response length for MS-CHAP */
93 #define MAX_RESPONSE_LENGTH 64 /* sufficient for MD5 or MS-CHAP */
96 * Each interface is described by a chap structure.
143 extern chap_state chap[];
chap.c 3 * chap.c - Network Challenge Handshake Authentication Protocol program file.
32 * Original based on BSD chap.c.
35 * chap.c - Challenge Handshake Authentication Protocol.
82 #include "chap.h"
92 { "chap-restart", o_int, &chap[0].timeouttime,
93 "Set timeout for CHAP" },
94 { "chap-max-challenge", o_int, &chap[0].max_transmits,
96 { "chap-interval", o_int, &chap[0].chal_interval
140 chap_state chap[NUM_PPP]; \/* CHAP state; one for each unit *\/ variable
    [all...]
  /external/wpa_supplicant_8/src/eap_common/
Makefile 12 chap.o \
  /external/freetype/src/tools/docmaker/
formatter.py 107 for chap in self.processor.chapters:
109 self.toc_chapter_enter( chap )
111 for section in chap.sections:
115 self.toc_chapter_exit( chap )
content.py 524 for chap in self.chapters:
525 for sec in chap.order:
528 section.chapter = chap
530 chap.sections.append( section )
533 chap.name + "' in " + chap.block.location() + \
548 chap = DocChapter( None )
549 chap.sections = others
550 self.chapters.append( chap )
  /external/syslinux/gpxe/src/net/tcp/
iscsi.c 96 chap_finish ( &iscsi->chap );
165 chap_finish ( &iscsi->chap );
472 /* If we have a credential to supply, permit CHAP */
474 auth_method = "CHAP,None";
475 /* If we have a credential to check, force CHAP */
477 auth_method = "CHAP";
497 for ( i = 0 ; i < iscsi->chap.response_len ; i++ ) {
499 iscsi->chap.response[i] );
574 chap_finish ( &iscsi->chap );
639 /* If server requests CHAP, send the CHAP_A string *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
wanrouter.h 28 * Dec 05, 1997 Jaspreet Singh Added 'pap', 'chap' to 'wanif_conf_t'
412 char chap; /* CHAP enabled or disabled */ member in struct:wanif_conf
  /external/scapy/test/
pptp.uts 386 + PPP CHAP Tests
387 = Test PPP CHAP Challenge
388 ~ ppp chap chap_challenge
402 assert chap_challenge_pkt[PPP_CHAP_ChallengeResponse].summary() in ['CHAP challenge=0x42424242424242 optional_name=\'server\'',
403 'CHAP challenge=0x42424242424242 optional_name=b\'server\'']
405 = Test PPP CHAP Response
406 ~ ppp chap chap_response
419 assert chap_response_pkt[PPP_CHAP_ChallengeResponse].summary() in ['CHAP response=0x00000000000000000000000000000000 optional_name=\'client\'',
420 'CHAP response=0x00000000000000000000000000000000 optional_name=b\'client\'']
427 = Test PPP CHAP Succes
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
nmake.mak 88 $(OBJDIR)\chap.obj \
  /external/wpa_supplicant_8/hostapd/
Android.mk 366 CHAP=y
395 CHAP=y
605 ifdef CHAP
606 OBJS += src/eap_common/chap.c
  /external/e2fsprogs/doc/
texinfo.tex     [all...]
  /external/e2fsprogs/lib/et/
texinfo.tex     [all...]
  /external/libffi/
texinfo.tex     [all...]
  /external/libmicrohttpd/doc/
texinfo.tex     [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/
texinfo.tex     [all...]
  /external/python/cpython3/Modules/_ctypes/libffi/
texinfo.tex     [all...]
  /toolchain/binutils/binutils-2.27/texinfo/
texinfo.tex     [all...]

Completed in 768 milliseconds