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

12345678910

/freebsd-10.0-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
H A Dxdm7 # 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
/freebsd-10.0-release/include/rpc/
H A Dauth.h1 /* $NetBSD: auth.h,v 1.15 2000/06/02 22:57:55 fvdl Exp $ */
31 * from: @(#)auth.h 1.17 88/02/08 SMI
32 * from: @(#)auth.h 2.3 88/08/07 4.0 RPCSRC
33 * from: @(#)auth.h 1.43 98/02/02 SMI
38 * auth.h, Authentication interface.
171 enum_t oa_flavor; /* flavor of auth */
172 caddr_t oa_base; /* address of more auth stuff */
202 * The ops and the auth handle provide the interface to the authenticators.
204 * AUTH *auth;
208 #define AUTH_NEXTVERF(auth) \
[all...]
/freebsd-10.0-release/lib/libc/rpc/
H A Dauth_unix.c64 #include <rpc/auth.h>
88 #define AUTH_PRIVATE(auth) ((struct audata *)auth->ah_private)
92 * Returns an auth handle with the given stuff in it.
106 AUTH *auth; local
110 * Allocate and set up auth handle
113 auth = mem_alloc(sizeof(*auth));
115 if (auth == NULL) {
127 auth
188 AUTH *auth; local
277 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
H A Dauth_des.c47 #include <rpc/auth.h>
66 #define AUTH_PRIVATE(auth) (struct ad_private *) auth->ah_private
157 AUTH *auth; local
164 auth = ALLOC(AUTH);
165 if (auth == NULL) {
211 if (key_gendes(&auth->ah_key) < 0) {
217 auth->ah_key = *ckey;
221 * Set up auth handle
223 auth
263 authdes_nextverf(AUTH *auth) argument
273 authdes_marshal(AUTH *auth, XDR *xdrs) argument
365 authdes_validate(AUTH *auth, struct opaque_auth *rverf) argument
424 authdes_refresh(AUTH *auth, void *dummy) argument
464 authdes_destroy(AUTH *auth) argument
[all...]
/freebsd-10.0-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.0-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.0-release/sys/rpc/
H A Dauth_unix.c64 #include <rpc/auth.h>
102 #define AUTH_PRIVATE(auth) ((struct audata *)auth->ah_private)
125 * Returns an auth handle with the given stuff in it.
134 AUTH *auth; local
182 * Allocate and set up auth handle
185 auth = mem_alloc(sizeof(*auth));
187 auth->ah_ops = &authunix_ops;
188 auth
245 authunix_nextverf(AUTH *auth) argument
251 authunix_marshal(AUTH *auth, uint32_t xid, XDR *xdrs, struct mbuf *args) argument
265 authunix_validate(AUTH *auth, uint32_t xid, struct opaque_auth *verf, struct mbuf **mrepp) argument
299 authunix_refresh(AUTH *auth, void *dummy) argument
338 authunix_destroy(AUTH *auth) argument
365 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 $ */
31 * from: @(#)auth.h 1.17 88/02/08 SMI
32 * from: @(#)auth.h 2.3 88/08/07 4.0 RPCSRC
33 * from: @(#)auth.h 1.43 98/02/02 SMI
38 * auth.h, Authentication interface.
171 enum_t oa_flavor; /* flavor of auth */
172 caddr_t oa_base; /* address of more auth stuff */
204 * The ops and the auth handle provide the interface to the authenticators.
206 * AUTH *auth;
210 #define AUTH_NEXTVERF(auth) \
[all...]
/freebsd-10.0-release/etc/rc.d/
H A Dpwcheck21 logger -s -p auth.err \
/freebsd-10.0-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
538 ssh_add_identity_constrained(AuthenticationConnection *auth, Key *key, const char *comment, u_int life, u_int confirm) argument
595 ssh_remove_identity(AuthenticationConnection *auth, Key *key) argument
630 ssh_update_card(AuthenticationConnection *auth, int add, const char *reader_id, const char *pin, u_int life, u_int confirm) argument
672 ssh_remove_all_identities(AuthenticationConnection *auth, int version) argument
[all...]
/freebsd-10.0-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 auth
[all...]
/freebsd-10.0-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.0-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.0-release/etc/
H A Dsyslog.conf8 *.err;kern.warning;auth.notice;mail.crit /dev/console
11 auth.info;authpriv.info /var/log/auth.log

Completed in 266 milliseconds

12345678910