mechanism         399 libcli/ldap/ldap_message.c 		switch (r->mechanism) {
mechanism         410 libcli/ldap/ldap_message.c 			asn1_write_OctetString(data, r->creds.SASL.mechanism,
mechanism         411 libcli/ldap/ldap_message.c 					       strlen(r->creds.SASL.mechanism));
mechanism        1155 libcli/ldap/ldap_message.c 			r->mechanism = LDAP_AUTH_MECH_SIMPLE;
mechanism        1173 libcli/ldap/ldap_message.c 			r->mechanism = LDAP_AUTH_MECH_SASL;
mechanism        1174 libcli/ldap/ldap_message.c 			asn1_read_OctetString_talloc(msg, data, &r->creds.SASL.mechanism);
mechanism          65 libcli/ldap/ldap_message.h 	enum ldap_auth_mechanism mechanism;
mechanism          69 libcli/ldap/ldap_message.h 			const char *mechanism;
mechanism        1292 source4/auth/gensec/gensec.c int gensec_setting_int(struct gensec_settings *settings, const char *mechanism, const char *name, int default_value)
mechanism        1294 source4/auth/gensec/gensec.c 	return lp_parm_int(settings->lp_ctx, NULL, mechanism, name, default_value);
mechanism        1297 source4/auth/gensec/gensec.c bool gensec_setting_bool(struct gensec_settings *settings, const char *mechanism, const char *name, bool default_value)
mechanism        1299 source4/auth/gensec/gensec.c 	return lp_parm_bool(settings->lp_ctx, NULL, mechanism, name, default_value);
mechanism         315 source4/auth/gensec/gensec.h int gensec_setting_int(struct gensec_settings *settings, const char *mechanism, const char *name, int default_value);
mechanism         316 source4/auth/gensec/gensec.h bool gensec_setting_bool(struct gensec_settings *settings, const char *mechanism, const char *name, bool default_value);
mechanism          49 source4/heimdal/lib/gssapi/krb5/inquire_names_for_mech.c             const gss_OID mechanism,
mechanism          58 source4/heimdal/lib/gssapi/krb5/inquire_names_for_mech.c     if (gss_oid_equal(mechanism, GSS_KRB5_MECHANISM) == 0 &&
mechanism          59 source4/heimdal/lib/gssapi/krb5/inquire_names_for_mech.c 	gss_oid_equal(mechanism, GSS_C_NULL_OID) == 0) {
mechanism          34 source4/heimdal/lib/gssapi/mech/gss_inquire_names_for_mech.c     const gss_OID mechanism,
mechanism          38 source4/heimdal/lib/gssapi/mech/gss_inquire_names_for_mech.c 	gssapi_mech_interface m = __gss_get_mechanism(mechanism);
mechanism          51 source4/heimdal/lib/gssapi/mech/gss_inquire_names_for_mech.c 			    mechanism, name_types));
mechanism         563 source4/heimdal/lib/gssapi/spnego/context_stubs.c             const gss_OID mechanism,
mechanism         133 source4/heimdal/lib/hx509/ks_p11.c     CK_MECHANISM mechanism;
mechanism         140 source4/heimdal/lib/hx509/ks_p11.c     memset(&mechanism, 0, sizeof(mechanism));
mechanism         141 source4/heimdal/lib/hx509/ks_p11.c     mechanism.mechanism = CKM_RSA_PKCS;
mechanism         149 source4/heimdal/lib/hx509/ks_p11.c     ret = P11FUNC(p11rsa->p, SignInit, (session, &mechanism, key));
mechanism         171 source4/heimdal/lib/hx509/ks_p11.c     CK_MECHANISM mechanism;
mechanism         178 source4/heimdal/lib/hx509/ks_p11.c     memset(&mechanism, 0, sizeof(mechanism));
mechanism         179 source4/heimdal/lib/hx509/ks_p11.c     mechanism.mechanism = CKM_RSA_PKCS;
mechanism         187 source4/heimdal/lib/hx509/ks_p11.c     ret = P11FUNC(p11rsa->p, DecryptInit, (session, &mechanism, key));
mechanism         161 source4/ldap_server/ldap_bind.c 			status = gensec_start_mech_by_sasl_name(conn->gensec, req->creds.SASL.mechanism);
mechanism         165 source4/ldap_server/ldap_bind.c 					  req->creds.SASL.mechanism, nt_errstr(status)));
mechanism         168 source4/ldap_server/ldap_bind.c 							 req->creds.SASL.mechanism, nt_errstr(status));
mechanism         222 source4/ldap_server/ldap_bind.c 						 req->creds.SASL.mechanism, nt_errstr(status));
mechanism         236 source4/ldap_server/ldap_bind.c 							 req->creds.SASL.mechanism, nt_errstr(status));
mechanism         250 source4/ldap_server/ldap_bind.c 								 req->creds.SASL.mechanism, 
mechanism         259 source4/ldap_server/ldap_bind.c 			errstr = talloc_asprintf(reply, "SASL:[%s]: %s", req->creds.SASL.mechanism, nt_errstr(status));
mechanism         286 source4/ldap_server/ldap_bind.c 	switch (req->mechanism) {
mechanism         301 source4/ldap_server/ldap_bind.c 	resp->response.errormessage = talloc_asprintf(reply, "Bad AuthenticationChoice [%d]", req->mechanism);
mechanism          81 source4/libcli/ldap/ldap_bind.c 	res->r.BindRequest.mechanism = LDAP_AUTH_MECH_SIMPLE;
mechanism         182 source4/libcli/ldap/ldap_bind.c 	res->r.BindRequest.mechanism = LDAP_AUTH_MECH_SASL;
mechanism         183 source4/libcli/ldap/ldap_bind.c 	res->r.BindRequest.creds.SASL.mechanism = talloc_strdup(res, sasl_mechanism);