HomeSort by relevance Sort by last modified time
    Searched refs:auth (Results 1 - 25 of 331) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/lib/libbc/inc/include/rpc/
auth.h 25 * auth.h, Authentication interface.
30 * is required to pass a AUTH * to routines that create rpc
79 enum_t oa_flavor; /* flavor of auth */
80 caddr_t oa_base; /* address of more auth stuff */
86 * Auth handle, interface to client side authenticators.
100 } AUTH;
105 * The ops and the auth handle provide the interface to the authenticators.
107 * AUTH *auth;
111 #define AUTH_NEXTVERF(auth) \
    [all...]
rpc.h 41 #include <rpc/auth.h> /* generic authenticator (client side) */
  /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/kclient/
pam_krb5_first 29 OTHER auth requisite pam_authtok_get.so.1
30 OTHER auth required pam_dhkeys.so.1
31 OTHER auth required pam_unix_cred.so.1
32 OTHER auth sufficient pam_krb5.so.1
33 OTHER auth required pam_unix_auth.so.1
pam_krb5_only 29 OTHER auth requisite pam_authtok_get.so.1
30 OTHER auth required pam_dhkeys.so.1
31 OTHER auth required pam_unix_cred.so.1
32 OTHER auth binding pam_krb5.so.1
33 OTHER auth required pam_unix_auth.so.1
pam_krb5_optional 29 OTHER auth requisite pam_authtok_get.so.1
30 OTHER auth required pam_dhkeys.so.1
31 OTHER auth required pam_unix_cred.so.1
32 OTHER auth required pam_unix_auth.so.1
33 OTHER auth optional pam_krb5.so.1
  /onnv/onnv-gate/usr/src/lib/libsecdb/common/
getauthattr.c 52 authstr_t auth; local
55 (void) memset(&auth, 0, sizeof (authstr_t));
56 tmp = _getauthattr(&auth, buf, NSS_BUFLEN_AUTHATTR, &err);
66 authstr_t auth; local
72 (void) memset(&auth, 0, sizeof (authstr_t));
73 tmp = _getauthnam(name, &auth, buf, NSS_BUFLEN_AUTHATTR, &err);
93 free_authattr(authattr_t *auth)
95 if (auth) {
96 free(auth->name);
97 free(auth->res1)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libpam/
pam.conf 38 login auth requisite pam_authtok_get.so.1
39 login auth required pam_dhkeys.so.1
40 login auth required pam_unix_cred.so.1
41 login auth required pam_unix_auth.so.1
42 login auth required pam_dial_auth.so.1
46 rlogin auth sufficient pam_rhosts_auth.so.1
47 rlogin auth requisite pam_authtok_get.so.1
48 rlogin auth required pam_dhkeys.so.1
49 rlogin auth required pam_unix_cred.so.1
50 rlogin auth required pam_unix_auth.so.
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/rpc/
auth.h 34 * auth.h, Authentication interface.
37 * is required to pass a AUTH * to routines that create rpc
173 enum_t oa_flavor; /* flavor of auth */
174 caddr_t oa_base; /* address of more auth stuff */
180 * Auth handle, interface to client side authenticators.
228 } AUTH;
233 * The ops and the auth handle provide the interface to the authenticators.
235 * AUTH *auth;
239 #define AUTH_NEXTVERF(auth) \
    [all...]
svc_auth.h 84 #define SVCAUTH_GSSPARMS(auth) ((svc_rpc_gss_parms_t *)&(auth)->svc_gss_parms)
87 * Auth flavors can now apply a transformation in addition to simple XDR
90 * internal RPC frame and the auth flavor specific code to allow the
91 * auth flavor to encode (WRAP) or decode (UNWRAP) the body.
93 #define SVCAUTH_WRAP(auth, xdrs, xfunc, xwhere) \
94 ((*((auth)->svc_ah_ops.svc_ah_wrap))(auth, xdrs, xfunc, xwhere))
95 #define SVCAUTH_UNWRAP(auth, xdrs, xfunc, xwhere) \
96 ((*((auth)->svc_ah_ops.svc_ah_unwrap))(auth, xdrs, xfunc, xwhere)
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/rpc/sec/
auth_none.c 32 #include <rpc/auth.h>
37 static void authnone_nextverf(AUTH *);
38 static bool_t authnone_marshal(AUTH *, XDR *, struct cred *);
39 static bool_t authnone_validate(AUTH *, struct opaque_auth *);
40 static bool_t authnone_refresh(AUTH *, struct rpc_msg *, cred_t *);
41 static void authnone_destroy(AUTH *);
55 * Returns an auth handle.
57 AUTH *
61 * Allocate and set up auth handle
73 AUTH *auth = (AUTH *)buf local
    [all...]
sec_gen.c 39 #include <rpc/auth.h>
49 authany_wrap(AUTH *auth, caddr_t buf, u_int buflen,
60 authany_unwrap(AUTH *auth, XDR *xdrs, xdrproc_t xfunc, caddr_t xwhere)
auth_loopb.c 40 * auth_loopb.c for the user level implementation of the loopback auth.
58 #include <rpc/auth.h>
66 static void authloopback_nextverf(AUTH *);
67 static bool_t authloopback_marshal(AUTH *, XDR *, struct cred *);
68 static bool_t authloopback_validate(AUTH *, struct opaque_auth *);
69 static bool_t authloopback_refresh(AUTH *, struct rpc_msg *, cred_t *);
70 static void authloopback_destroy(AUTH *);
84 * Returns an auth handle.
86 AUTH *
90 * Allocate and set up auth handl
102 AUTH *auth = (AUTH *)buf; local
    [all...]
auth_kern.c 37 * level implementation of unix auth.
55 #include <rpc/auth.h>
63 static void authkern_nextverf(AUTH *);
64 static bool_t authkern_marshal(AUTH *, XDR *, struct cred *);
65 static bool_t authkern_validate(AUTH *, struct opaque_auth *);
66 static bool_t authkern_refresh(AUTH *, struct rpc_msg *, cred_t *);
67 static void authkern_destroy(AUTH *);
81 * Returns an auth handle.
83 AUTH *
87 * Allocate and set up auth handl
99 AUTH *auth = (AUTH *)buf; local
    [all...]
auth_des.c 50 #include <rpc/auth.h>
62 #define AUTH_PRIVATE(auth) (struct ad_private *)auth->ah_private
70 static void authdes_nextverf(AUTH *);
71 static bool_t authdes_marshal(AUTH *, XDR *, struct cred *);
72 static bool_t authdes_validate(AUTH *, struct opaque_auth *);
73 static bool_t authdes_refresh(AUTH *, struct rpc_msg *, cred_t *);
74 static void authdes_destroy(AUTH *);
81 * This struct is pointed to by the ah_private field of an "AUTH *"
109 AUTH **retauth
111 AUTH *auth; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/rcache/
rc_conv.c 21 krb5_auth_to_replay(context, krb5_tkt_authent *auth,krb5_donot_replay *rep)
22 given auth, take important information and make rep; return -1 if failed
26 krb5_auth_to_rep(krb5_context context, krb5_tkt_authent *auth, krb5_donot_replay *rep)
29 rep->cusec = auth->authenticator->cusec;
30 rep->ctime = auth->authenticator->ctime;
31 if ((retval = krb5_unparse_name(context, auth->ticket->server, &rep->server)))
33 if ((retval = krb5_unparse_name(context, auth->authenticator->client,
  /onnv/onnv-gate/usr/src/stand/lib/fs/nfs/
auth_unix.c 52 #include <rpc/auth.h>
71 #define AUTH_PRIVATE(auth) ((struct audata *)auth->ah_private)
73 static void marshal_new_auth(AUTH *);
79 * Returns an auth handle with the given stuff in it.
81 AUTH *
87 AUTH *auth; local
91 * Allocate and set up auth handle
93 auth = (AUTH *) bkmem_alloc(sizeof (*auth))
    [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/drm/
drm_auth.c 133 drm_auth_t auth; local
137 auth.magic = fpriv->magic;
141 auth.magic = old+1;
142 if (!atomic_cmpset_int(&sequence, old, auth.magic))
144 } while (drm_find_file(dev, auth.magic));
145 fpriv->magic = auth.magic;
146 (void) drm_add_magic(dev, fpriv, auth.magic);
150 DRM_DEBUG("drm_getmagic: %u", auth.magic);
152 DRM_COPYTO_WITH_RETURN((void *)data, &auth, sizeof (auth));
161 drm_auth_t auth; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/ssh/sshd/
Makefile 32 auth.o \
35 auth-options.o \
44 auth-bsdauth.o \
45 auth-chall.o \
46 auth-rhosts.o \
47 auth-krb4.o \
48 auth-krb5.o \
49 auth-pam.o \
50 auth-passwd.o \
51 auth-rsa.o
    [all...]
  /onnv/onnv-gate/usr/src/cmd/ssh/libssh/common/
authfd.c 115 ssh_request_reply(AuthenticationConnection *auth, Buffer *request, Buffer *reply)
125 if (atomicio(write, auth->fd, buf, 4) != 4 ||
126 atomicio(write, auth->fd, buffer_ptr(request),
137 l = read(auth->fd, buf + 4 - len, len);
158 l = read(auth->fd, buf, l);
195 AuthenticationConnection *auth; local
207 auth = xmalloc(sizeof(*auth));
208 auth->fd = sock;
209 buffer_init(&auth->identities)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libnsl/rpc/
auth_sys.c 53 #include <rpc/auth.h>
72 #define AUTH_PRIVATE(auth) ((struct audata *)auth->ah_private)
82 * Returns an auth handle with the given stuff in it.
84 AUTH *
92 AUTH *auth; local
96 * Allocate and set up auth handle
98 auth = malloc(sizeof (*auth));
    [all...]
auth_des.c 63 static bool_t authdes_refresh(AUTH *, void *);
66 * This struct is pointed to by the ah_private field of an "AUTH *"
88 extern AUTH *authdes_pk_seccreate(const char *, netobj *, uint_t, const char *,
101 AUTH *
128 AUTH *
132 AUTH *auth; local
139 auth = malloc(sizeof (AUTH));
140 if (auth == NULL)
    [all...]
  /onnv/onnv-gate/usr/src/lib/libslp/javalib/com/sun/slp/
SAttrMsg.java 141 SrvLocMsg makeReply(Vector attrs, Hashtable auth)
150 if (auth != null) {
151 AuthBlock selectedAuth = AuthBlock.getEquivalentAuth(spi, auth);
152 auth = null;
154 auth = new Hashtable();
155 auth.put(spi, selectedAuth);
161 hdr.parseAttributeVectorOut(attrs, 0, (auth != null),
162 auth, baos, true);
172 " auth block=" +
173 AuthBlock.desc(auth)
    [all...]
SSrvMsg.java 176 Hashtable auth = null; local
179 auth = (Hashtable)URLSignatures.get(surl);
181 AuthBlock.getEquivalentAuth(spi, auth);
182 auth = null;
184 auth = new Hashtable();
185 auth.put(spi, selectedAuth);
189 (auth != null ?
191 "No Auth Block\n");
198 (auth != null),
199 auth,
    [all...]
  /onnv/onnv-gate/usr/src/lib/rpcsec_gss/
rpcsec_gss.c 95 #define AUTH_PRIVATE(auth) ((rpc_gss_data *)auth->ah_private)
100 AUTH *
118 AUTH *auth = NULL; local
148 * Create AUTH handle. Save the necessary interface information
151 if ((auth = (AUTH *) malloc(sizeof (*auth))) != NULL)
153 if (auth == NULL || ap == NULL)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/krb5/kdestroy/
krpc_sys.c 12 #include <rpc/auth.h>

Completed in 5240 milliseconds

1 2 3 4 5 6 7 8 91011>>