clear_text_pw     839 source3/passdb/pdb_ldap.c 		char clear_text_pw[512];
clear_text_pw     847 source3/passdb/pdb_ldap.c 			pwd_len = sizeof(clear_text_pw);
clear_text_pw     848 source3/passdb/pdb_ldap.c 			if (pdb_nds_get_password(ldap_state->smbldap_state, user_dn, &pwd_len, clear_text_pw) == LDAP_SUCCESS) {
clear_text_pw     849 source3/passdb/pdb_ldap.c 				nt_lm_owf_gen(clear_text_pw, smbntpwd, smblmpwd);
clear_text_pw     763 source3/passdb/pdb_nds.c 		char clear_text_pw[512];
clear_text_pw     798 source3/passdb/pdb_nds.c 		pwd_len = sizeof(clear_text_pw);
clear_text_pw     800 source3/passdb/pdb_nds.c 			if (pdb_nds_get_password(ldap_state->smbldap_state, dn, &pwd_len, clear_text_pw) == LDAP_SUCCESS) {
clear_text_pw     805 source3/passdb/pdb_nds.c 			generate_random_buffer((unsigned char *)clear_text_pw, 24);
clear_text_pw     806 source3/passdb/pdb_nds.c 			clear_text_pw[24] = '\0';
clear_text_pw     807 source3/passdb/pdb_nds.c 			DEBUG(5,("pdb_nds_update_login_attempts: using random password %s\n", clear_text_pw));
clear_text_pw     819 source3/passdb/pdb_nds.c 			rc = ldap_simple_bind_s(ld, dn, clear_text_pw);