Searched refs:auth (Results 1 - 25 of 248) sorted by relevance

12345678910

/freebsd-10.1-release/etc/pam.d/
H A Dimap7 # auth
8 #auth sufficient pam_krb5.so no_warn try_first_pass
9 #auth sufficient pam_ssh.so no_warn try_first_pass
10 auth required pam_unix.so no_warn try_first_pass
H A Dpop37 # auth
8 #auth sufficient pam_krb5.so no_warn try_first_pass
9 #auth sufficient pam_ssh.so no_warn try_first_pass
10 auth required pam_unix.so no_warn try_first_pass
H A Dsu7 # auth
8 auth sufficient pam_rootok.so no_warn
9 auth sufficient pam_self.so no_warn
10 auth requisite pam_group.so no_warn group=wheel root_only fail_safe ruser
11 auth include system
H A Dftpd7 # auth
8 auth sufficient pam_opie.so no_warn no_fake_prompts
9 auth requisite pam_opieaccess.so no_warn allow_local
10 #auth sufficient pam_krb5.so no_warn
11 #auth sufficient pam_ssh.so no_warn try_first_pass
12 auth required pam_unix.so no_warn try_first_pass
H A Dother7 # auth
8 auth sufficient pam_opie.so no_warn no_fake_prompts
9 auth requisite pam_opieaccess.so no_warn allow_local
10 #auth sufficient pam_krb5.so no_warn try_first_pass
11 #auth sufficient pam_ssh.so no_warn try_first_pass
12 auth required pam_unix.so no_warn try_first_pass
H A Dsshd7 # auth
8 auth sufficient pam_opie.so no_warn no_fake_prompts
9 auth requisite pam_opieaccess.so no_warn allow_local
10 #auth sufficient pam_krb5.so no_warn try_first_pass
11 #auth sufficient pam_ssh.so no_warn try_first_pass
12 auth required pam_unix.so no_warn try_first_pass
H A Dsystem7 # auth
8 auth sufficient pam_opie.so no_warn no_fake_prompts
9 auth requisite pam_opieaccess.so no_warn allow_local
10 #auth sufficient pam_krb5.so no_warn try_first_pass
11 #auth sufficient pam_ssh.so no_warn try_first_pass
12 auth required pam_unix.so no_warn try_first_pass nullok
H A Dlogin7 # auth
8 auth sufficient pam_self.so no_warn
9 auth include system
H A Dtelnetd7 # auth
8 auth sufficient pam_opie.so no_warn no_fake_prompts
9 auth requisite pam_opieaccess.so no_warn allow_local
10 #auth sufficient pam_krb5.so no_warn try_first_pass
11 #auth sufficient pam_ssh.so no_warn try_first_pass
12 auth required pam_unix.so no_warn try_first_pass
H A Drsh7 # auth
8 auth required pam_rhosts.so no_warn
/freebsd-10.1-release/include/rpc/
H A Dauth.h1 /* $NetBSD: auth.h,v 1.15 2000/06/02 22:57:55 fvdl Exp $ */
30 * from: @(#)auth.h 1.17 88/02/08 SMI
31 * from: @(#)auth.h 2.3 88/08/07 4.0 RPCSRC
32 * from: @(#)auth.h 1.43 98/02/02 SMI
37 * auth.h, Authentication interface.
170 enum_t oa_flavor; /* flavor of auth */
171 caddr_t oa_base; /* address of more auth stuff */
201 * The ops and the auth handle provide the interface to the authenticators.
203 * AUTH *auth;
207 #define AUTH_NEXTVERF(auth) \
[all...]
/freebsd-10.1-release/lib/libc/rpc/
H A Dauth_unix.c63 #include <rpc/auth.h>
87 #define AUTH_PRIVATE(auth) ((struct audata *)auth->ah_private)
91 * Returns an auth handle with the given stuff in it.
105 AUTH *auth; local
109 * Allocate and set up auth handle
112 auth = mem_alloc(sizeof(*auth));
114 if (auth == NULL) {
126 auth
187 AUTH *auth; local
276 authunix_refresh(AUTH *auth, void *dummy) argument
[all...]
H A Drpcsec_gss_stub.c33 __rpc_gss_wrap_stub(AUTH *auth, void *header, size_t headerlen, XDR* xdrs, argument
41 __rpc_gss_unwrap_stub(AUTH *auth, XDR* xdrs, xdrproc_t xdr_args, void *args_ptr) argument
/freebsd-10.1-release/crypto/heimdal/lib/krb5/
H A Dbuild_auth.c113 Authenticator auth; local
120 memset(&auth, 0, sizeof(auth));
122 auth.authenticator_vno = 5;
123 copy_Realm(&cred->client->realm, &auth.crealm);
124 copy_PrincipalName(&cred->client->name, &auth.cname);
126 krb5_us_timeofday (context, &auth.ctime, &auth.cusec);
128 ret = krb5_auth_con_getlocalsubkey(context, auth_context, &auth.subkey);
137 ALLOC(auth
[all...]
/freebsd-10.1-release/tools/regression/iscsi/
H A Dctl.conf0 auth-group meh {
7 discovery-auth-group no-authentication
11 auth-group no-authentication
24 auth-group meh
/freebsd-10.1-release/contrib/ntp/ntpq/
H A Dlibntpq_subs.c43 int auth,
49 return doquerylist((struct varlist *)vlist, op, associd, auth,
39 ntpq_doquerylist( struct ntpq_varlist *vlist, int op, associd_t associd, int auth, u_short *rstatus, size_t *dsize, const char **datap ) argument
/freebsd-10.1-release/sys/rpc/
H A Dauth_unix.c63 #include <rpc/auth.h>
101 #define AUTH_PRIVATE(auth) ((struct audata *)auth->ah_private)
124 * Returns an auth handle with the given stuff in it.
133 AUTH *auth; local
181 * Allocate and set up auth handle
184 auth = mem_alloc(sizeof(*auth));
186 auth->ah_ops = &authunix_ops;
187 auth
244 authunix_nextverf(AUTH *auth) argument
250 authunix_marshal(AUTH *auth, uint32_t xid, XDR *xdrs, struct mbuf *args) argument
264 authunix_validate(AUTH *auth, uint32_t xid, struct opaque_auth *verf, struct mbuf **mrepp) argument
298 authunix_refresh(AUTH *auth, void *dummy) argument
337 authunix_destroy(AUTH *auth) argument
364 marshal_new_auth(AUTH *auth) argument
[all...]
H A Dauth.h1 /* $NetBSD: auth.h,v 1.15 2000/06/02 22:57:55 fvdl Exp $ */
30 * from: @(#)auth.h 1.17 88/02/08 SMI
31 * from: @(#)auth.h 2.3 88/08/07 4.0 RPCSRC
32 * from: @(#)auth.h 1.43 98/02/02 SMI
37 * auth.h, Authentication interface.
170 enum_t oa_flavor; /* flavor of auth */
171 caddr_t oa_base; /* address of more auth stuff */
203 * The ops and the auth handle provide the interface to the authenticators.
205 * AUTH *auth;
209 #define AUTH_NEXTVERF(auth) \
[all...]
/freebsd-10.1-release/crypto/openssh/
H A Dauthfd.c127 ssh_request_reply(AuthenticationConnection *auth, Buffer *request, Buffer *reply) argument
137 if (atomicio(vwrite, auth->fd, buf, 4) != 4 ||
138 atomicio(vwrite, auth->fd, buffer_ptr(request),
147 if (atomicio(read, auth->fd, buf, 4) != 4) {
163 if (atomicio(read, auth->fd, buf, l) != l) {
197 AuthenticationConnection *auth; local
209 auth = xcalloc(1, sizeof(*auth));
210 auth->fd = sock;
211 buffer_init(&auth
223 ssh_close_authentication_connection(AuthenticationConnection *auth) argument
232 ssh_lock_agent(AuthenticationConnection *auth, int lock, const char *password) argument
255 ssh_get_num_identities(AuthenticationConnection *auth, int version) argument
305 ssh_get_first_identity(AuthenticationConnection *auth, char **comment, int version) argument
314 ssh_get_next_identity(AuthenticationConnection *auth, char **comment, int version) argument
365 ssh_decrypt_challenge(AuthenticationConnection *auth, Key* key, BIGNUM *challenge, u_char session_id[16], u_int response_type, u_char response[16]) argument
416 ssh_agent_sign(AuthenticationConnection *auth, Key *key, u_char **sigp, u_int *lenp, u_char *data, u_int datalen) argument
487 ssh_add_identity_constrained(AuthenticationConnection *auth, Key *key, const char *comment, u_int life, u_int confirm) argument
546 ssh_remove_identity(AuthenticationConnection *auth, Key *key) argument
579 ssh_update_card(AuthenticationConnection *auth, int add, const char *reader_id, const char *pin, u_int life, u_int confirm) argument
621 ssh_remove_all_identities(AuthenticationConnection *auth, int version) argument
[all...]
/freebsd-10.1-release/etc/rc.d/
H A Dpwcheck21 logger -s -p auth.err \
/freebsd-10.1-release/secure/usr.sbin/sshd/
H A DMakefile6 SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \
9 auth.c auth1.c auth2.c auth-options.c session.c \
10 auth-chall.c auth2-chall.c groupaccess.c \
11 auth-skey.c auth-bsdauth.c auth2-hostbased.c auth2-kbdint.c \
14 kexc25519s.c auth
[all...]
/freebsd-10.1-release/sys/dev/drm/
H A Ddrm_auth.c143 struct drm_auth *auth = data; local
147 auth->magic = file_priv->magic;
153 auth->magic = old+1;
155 if (!atomic_cmpset_int(&sequence, old, auth->magic))
157 } while (drm_find_file(dev, auth->magic));
158 file_priv->magic = auth->magic;
159 drm_add_magic(dev, file_priv, auth->magic);
163 DRM_DEBUG("%u\n", auth->magic);
174 struct drm_auth *auth = data; local
177 DRM_DEBUG("%u\n", auth
[all...]
/freebsd-10.1-release/sys/dev/drm2/
H A Ddrm_auth.c143 struct drm_auth *auth = data; local
147 auth->magic = file_priv->magic;
153 auth->magic = old+1;
155 if (!atomic_cmpset_int(&sequence, old, auth->magic))
157 } while (drm_find_file(dev, auth->magic));
158 file_priv->magic = auth->magic;
159 drm_add_magic(dev, file_priv, auth->magic);
163 DRM_DEBUG("%u\n", auth->magic);
174 struct drm_auth *auth = data; local
177 DRM_DEBUG("%u\n", auth
[all...]
/freebsd-10.1-release/etc/
H A Dsyslog.conf8 *.err;kern.warning;auth.notice;mail.crit /dev/console
11 auth.info;authpriv.info /var/log/auth.log
/freebsd-10.1-release/usr.sbin/ctld/
H A Dtoken.l52 auth-group { return AUTH_GROUP; }
53 auth-type { return AUTH_TYPE; }
60 discovery-auth-group { return DISCOVERY_AUTH_GROUP; }

Completed in 109 milliseconds

12345678910