Searched refs:auth (Results 26 - 50 of 306) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/rpc/rpcsec_gss/
H A Drpcsec_gss.c91 static bool_t rpc_gss_init(AUTH *auth, rpc_gss_options_ret_t *options_ret);
147 #define AUTH_PRIVATE(auth) ((struct rpc_gss_data *)auth->ah_private)
197 AUTH *auth; local
257 auth = rpc_gss_seccreate_int(clnt, cred, NULL, principal, mech_oid,
259 if (!auth)
262 gd = AUTH_PRIVATE(auth);
276 AUTH_DESTROY(auth);
287 return (auth);
336 rpc_gss_refresh_auth(AUTH *auth) argument
360 AUTH *auth; local
444 rpc_gss_set_defaults(AUTH *auth, rpc_gss_service_t service, const char *qop) argument
504 rpc_gss_nextverf(__unused AUTH *auth) argument
511 rpc_gss_marshal(AUTH *auth, uint32_t xid, XDR *xdrs, struct mbuf *args) argument
616 rpc_gss_validate(AUTH *auth, uint32_t xid, struct opaque_auth *verf, struct mbuf **resultsp) argument
738 rpc_gss_init(AUTH *auth, rpc_gss_options_ret_t *options_ret) argument
1017 rpc_gss_refresh(AUTH *auth, void *msg) argument
1054 rpc_gss_destroy_context(AUTH *auth, bool_t send_destroy) argument
1112 rpc_gss_destroy(AUTH *auth) argument
1140 rpc_gss_max_data_length(AUTH *auth, int max_tp_unit_len) argument
[all...]
/freebsd-11-stable/etc/periodic/security/
H A D800.loginfail49 find ${LOG} -name 'auth.log.*' -mtime -2 |
58 [ -f ${LOG}/auth.log ] && cat $LOG/auth.log
67 n=$(catmsgs | egrep -ia "^$yesterday.*: .*\b(fail(ures?|ed)?|invalid|bad|illegal|auth.*error)\b" |
/freebsd-11-stable/usr.sbin/ppp/
H A Dchap.h51 struct authinfo auth; member in struct:chap
66 ((struct chap *)((char *)a - (uintptr_t)&((struct chap *)0)->auth))
/freebsd-11-stable/libexec/bootpd/
H A Dsyslog.conf15 #*.err;kern.debug;auth.notice;user.none /dev/console
16 kern.debug;user,mail.crit;auth.notice /dev/console
19 #*.err;kern.debug;daemon,auth.notice;mail.crit;user.none /var/adm/messages
20 kern.debug;user,mail.crit;auth.notice /var/adm/messages
37 #auth.notice ifdef(`LOGHOST', /var/log/authlog, @loghost)
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/nfs/
H A Dtst.call.c56 AUTH *auth; local
76 auth = authsys_create_default();
77 client->cl_auth = auth;
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftp/
H A Dsecurity.h51 int (*auth)(void *, char*); member in struct:sec_client_mech
69 int (*auth)(void *); member in struct:sec_server_mech
117 void auth (char *);
/freebsd-11-stable/contrib/wpa/src/crypto/
H A Daes-ccm.c117 static void aes_ccm_encr_auth(void *aes, size_t M, u8 *x, u8 *a, u8 *auth) argument
127 auth[i] = x[i] ^ tmp[i];
128 wpa_hexdump_key(MSG_EXCESSIVE, "CCM U", auth, M);
132 static void aes_ccm_decr_auth(void *aes, size_t M, u8 *a, const u8 *auth, u8 *t) argument
137 wpa_hexdump_key(MSG_EXCESSIVE, "CCM U", auth, M);
142 t[i] = auth[i] ^ tmp[i];
150 const u8 *aad, size_t aad_len, u8 *crypt, u8 *auth)
169 aes_ccm_encr_auth(aes, M, x, a, auth);
180 const u8 *aad, size_t aad_len, const u8 *auth, u8 *plain)
196 aes_ccm_decr_auth(aes, M, a, auth,
148 aes_ccm_ae(const u8 *key, size_t key_len, const u8 *nonce, size_t M, const u8 *plain, size_t plain_len, const u8 *aad, size_t aad_len, u8 *crypt, u8 *auth) argument
178 aes_ccm_ad(const u8 *key, size_t key_len, const u8 *nonce, size_t M, const u8 *crypt, size_t crypt_len, const u8 *aad, size_t aad_len, const u8 *auth, u8 *plain) argument
[all...]
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dreplay.c181 checksum_authenticator(Authenticator *auth, void *data) argument
188 EVP_DigestUpdate(m, auth->crealm, strlen(auth->crealm));
189 for(i = 0; i < auth->cname.name_string.len; i++)
190 EVP_DigestUpdate(m, auth->cname.name_string.val[i],
191 strlen(auth->cname.name_string.val[i]));
192 EVP_DigestUpdate(m, &auth->ctime, sizeof(auth->ctime));
193 EVP_DigestUpdate(m, &auth->cusec, sizeof(auth
[all...]
/freebsd-11-stable/contrib/netbsd-tests/rump/rumpkern/h_client/
H A Dh_forkcli.c121 uint32_t *auth; local
128 auth = (void *)rf;
129 *(auth+3) = *(auth+3) ^ 0x1;
/freebsd-11-stable/etc/pam.d/
H A Dconvert.pl54 next unless m/^(\#*)(\w+)\s+(auth|account|session|password)\s+(\S.*)$/;
78 foreach $type (qw(auth account session password)) {
/freebsd-11-stable/sys/rpc/
H A Dsvc.h220 SVCAUTH xp_auth; /* interface to auth methods */
266 SVCAUTH rq_auth; /* interface to auth methods */
493 #define SVCAUTH_WRAP(auth, mp) \
494 ((auth)->svc_ah_ops->svc_ah_wrap(auth, mp))
495 #define SVCAUTH_UNWRAP(auth, mp) \
496 ((auth)->svc_ah_ops->svc_ah_unwrap(auth, mp))
497 #define SVCAUTH_RELEASE(auth) \
498 ((auth)
[all...]
H A Dsvc_auth.c113 * A set of null auth methods used by any authentication protocols
117 svcauth_null_wrap(SVCAUTH *auth, struct mbuf **mp) argument
124 svcauth_null_unwrap(SVCAUTH *auth, struct mbuf **mp) argument
131 svcauth_null_release(SVCAUTH *auth) argument
/freebsd-11-stable/stand/libsa/
H A Drpc.c65 int32_t authtype; /* auth type */
66 uint32_t authlen; /* auth length */
115 struct auth_info *auth; local
143 send_head -= sizeof(*auth);
144 auth = (struct auth_info *)send_head;
145 auth->authtype = htonl(RPCAUTH_NULL);
146 auth->authlen = 0;
148 /* Auth credentials: always auth unix (as root) */
151 send_head -= sizeof(*auth);
152 auth
[all...]
/freebsd-11-stable/contrib/wpa/wpa_supplicant/
H A Dwpa_priv.c245 struct privsep_cmd_authenticate *auth; local
251 if (len < sizeof(*auth)) {
256 auth = buf;
257 if (sizeof(*auth) + auth->ie_len + auth->auth_data_len > len) {
263 params.freq = auth->freq;
264 params.bssid = auth->bssid;
265 params.ssid = auth->ssid;
266 if (auth
887 struct privsep_event_auth *auth; local
[all...]
H A Dibss_rsn.c42 wpa_auth_sta_deinit(peer->auth);
358 if (peer->auth && cb(peer->auth, cb_ctx))
455 peer->auth = wpa_auth_sta_init(ibss_rsn->auth_group, peer->addr, NULL);
456 if (peer->auth == NULL) {
462 if (wpa_validate_wpa_ie(ibss_rsn->auth_group, peer->auth, 0,
473 if (wpa_auth_sm_event(peer->auth, WPA_ASSOC))
476 if (wpa_auth_sta_associated(ibss_rsn->auth_group, peer->auth))
485 struct ieee80211_mgmt auth; local
486 const size_t auth_length = IEEE80211_HDRLEN + sizeof(auth
[all...]
/freebsd-11-stable/usr.bin/svn/lib/libserf/
H A DMakefile10 auth.c \
38 ${SERF}/auth \
/freebsd-11-stable/usr.sbin/ctld/
H A Dctld.c140 static struct auth *
143 struct auth *auth; local
145 auth = calloc(1, sizeof(*auth));
146 if (auth == NULL)
148 auth->a_auth_group = ag;
149 TAILQ_INSERT_TAIL(&ag->ag_auths, auth, a_next);
150 return (auth);
154 auth_delete(struct auth *aut argument
168 const struct auth *auth; local
179 auth_check_secret_length(struct auth *auth) argument
243 struct auth *auth; local
271 struct auth *auth; local
511 struct auth *auth, *auth_tmp; local
[all...]
/freebsd-11-stable/include/rpc/
H A Drpcsec_gss.h146 bool_t rpc_gss_set_defaults(AUTH *auth, rpc_gss_service_t service,
171 bool_t __rpc_gss_wrap(AUTH *auth, void *header, size_t headerlen,
173 bool_t __rpc_gss_unwrap(AUTH *auth, XDR* xdrs, xdrproc_t xdr_args,
/freebsd-11-stable/lib/libc/rpc/
H A Dauthunix_prot.c50 #include <rpc/auth.h>
/freebsd-11-stable/lib/libtelnet/
H A DMakefile20 SRCS+= encrypt.c auth.c enc_des.c sra.c pk.c
/freebsd-11-stable/crypto/openssh/regress/
H A Dtry-ciphers.sh22 if ${SSH} -Q cipher-auth | grep "^${c}\$" >/dev/null 2>&1 ; then
/freebsd-11-stable/tools/regression/rpcsec_gss/
H A Drpctest.c89 AUTH *auth; local
116 auth = NULL;
122 auth = rpc_gss_seccreate(client, service,
128 if (auth)
132 if (!auth) {
138 client->cl_auth = auth;
149 rpc_gss_set_defaults(auth, svc, NULL);
164 AUTH_DESTROY(auth);
/freebsd-11-stable/tools/tools/net80211/scripts/
H A Dsetup.wdsmain23 wlandebug -i $WLAN_AP state+scan+assoc+auth+wds+11n
H A Dsetup.wdsrelay25 wlandebug -i $WLAN_STA state+assoc+auth+wds+scan+11n
/freebsd-11-stable/contrib/telnet/libtelnet/
H A Dkerberos.c68 #include "auth.h"
82 #define KRB_CHALLENGE 3 /* Challenge for mutual auth. */
83 #define KRB_RESPONSE 4 /* Response for mutual auth. */
85 static KTEXT_ST auth; variable
255 memmove((void *)auth.dat, (void *)data, auth.length = cnt);
258 printf("CK: %d:", kerberos4_cksum(auth.dat, auth.length));
259 printd(auth.dat, auth
[all...]

Completed in 162 milliseconds

1234567891011>>