hisauth           129 net/if_sppp.h  	struct sauth hisauth;		/* auth params, i'm authenticator */
hisauth          1977 net/if_spppsubr.c 	if (sp->hisauth.proto != 0)
hisauth          2161 net/if_spppsubr.c 					       sppp_proto_name(sp->hisauth.proto),
hisauth          2250 net/if_spppsubr.c 			    (sp->hisauth.flags & AUTHFLAG_NOCALLOUT) != 0) {
hisauth          2480 net/if_spppsubr.c 		authproto = sp->hisauth.proto;
hisauth          3207 net/if_spppsubr.c 		if (name_len != sppp_strnlen(sp->hisauth.name, AUTHNAMELEN)
hisauth          3208 net/if_spppsubr.c 		    || bcmp(name, sp->hisauth.name, name_len) != 0) {
hisauth          3213 net/if_spppsubr.c 			sppp_print_string(sp->hisauth.name,
hisauth          3214 net/if_spppsubr.c 					  sppp_strnlen(sp->hisauth.name, AUTHNAMELEN));
hisauth          3241 net/if_spppsubr.c 		MD5Update(&ctx, sp->hisauth.secret,
hisauth          3242 net/if_spppsubr.c 			  sppp_strnlen(sp->hisauth.secret, AUTHKEYLEN));
hisauth          3372 net/if_spppsubr.c 	if ((sp->hisauth.flags & AUTHFLAG_NORECHALLENGE) == 0) {
hisauth          3392 net/if_spppsubr.c 		if ((sp->hisauth.flags & AUTHFLAG_NORECHALLENGE) == 0)
hisauth          3527 net/if_spppsubr.c 		    bcmp(name, sp->hisauth.name, name_len) != 0 ||
hisauth          3528 net/if_spppsubr.c 		    bcmp(passwd, sp->hisauth.secret, passwd_len) != 0) {
hisauth          3631 net/if_spppsubr.c 	if (sp->hisauth.proto == PPP_PAP &&
hisauth          4139 net/if_spppsubr.c 		bzero(spr.defs.hisauth.secret, AUTHKEYLEN);
hisauth          4140 net/if_spppsubr.c 		bzero(spr.defs.hisauth.challenge, AUTHKEYLEN);
hisauth          4175 net/if_spppsubr.c 		    (spr.defs.hisauth.proto != 0 && spr.defs.hisauth.proto != PPP_PAP &&
hisauth          4176 net/if_spppsubr.c 		     spr.defs.hisauth.proto != PPP_CHAP))
hisauth          4190 net/if_spppsubr.c 		if (spr.defs.hisauth.proto == 0)
hisauth          4192 net/if_spppsubr.c 			bzero(&sp->hisauth, sizeof sp->hisauth);
hisauth          4195 net/if_spppsubr.c 			sp->hisauth.proto = spr.defs.hisauth.proto;
hisauth          4196 net/if_spppsubr.c 			sp->hisauth.flags = spr.defs.hisauth.flags;
hisauth          4197 net/if_spppsubr.c 			bcopy(spr.defs.hisauth.name, sp->hisauth.name, AUTHNAMELEN);
hisauth          4198 net/if_spppsubr.c 			if (spr.defs.hisauth.secret[0] != '\0')
hisauth          4199 net/if_spppsubr.c 				bcopy(spr.defs.hisauth.secret, sp->hisauth.secret,