Question about DirectoryEntry.AuthenticationTypes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
I have a scenario where the user can change his password at Active
Directory. However the password must not be passes in cleartext over the
network.
I am using DirectoryEntry.Invoke("ChangePassword",oldPassword, newPassword)
to change the password.
If I use AuthenticationTypes.Secure while binding, will it also ensure that
during the password change also, the new password and old password are not
passed in cleartext

Thanks in advance
Vikas Manghani
 
Authentication.Secure doesn't affect the ChangePassword invocation.

Hi
I have a scenario where the user can change his password at Active
Directory. However the password must not be passes in cleartext over the
network.
I am using DirectoryEntry.Invoke("ChangePassword",oldPassword, newPassword)
to change the password.
If I use AuthenticationTypes.Secure while binding, will it also ensure that
during the password change also, the new password and old password are not
passed in cleartext

Thanks in advance
Vikas Manghani
 
Then how can I ensure that while changing the password, the passwords are not
passed in cleartext.
Thanks
Vikas Manghani
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top