Estoy usando el código siguiente para autenticar a un usuario en Active Directory, pero la contraseña está enviando en texto claro. ¿Cómo puedo codificar mi contraseña y luego enviarla a Active Directory?Autenticación de Active Directory
DirectoryEntry entry = new DirectoryEntry(path, username, pwd);
try
{
//Bind to the native AdsObject to force authentication.
object obj = entry.NativeObject;
DirectorySearcher search = new DirectorySearcher(entry);
search.Filter = "(SAMAccountName=" + username + ")";
search.PropertiesToLoad.Add("cn");
SearchResult result = search.FindOne();
if (null == result)
{
return false;
}
//Update the new path to the user in the directory.
_path = result.Path;
_filterAttribute = (string)result.Properties["cn"][0];
}
catch (Exception ex)
{
throw new Exception("Error authenticating user. " + ex.Message);
}
return true;
Esta es una buena pregunta. Por curiosidad, ¿qué AuthenticationType estás usando? – Pandincus
cuál es su significado de AuthenticationType, estoy usando System.DirectoryServices; espacio de nombre y código mencionado para Autenticar –