Generally for passwords you use a stable hash rather than encryption. To check a password string you hash the string and compare to the stored value.
This has the advantage that passwords can not be stolen, as they are not stored.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
I have an WPF application that read data from a WCF service (Net.TCP protocol).
At this moment Client application and WCF service are hosted on intranet, but I want to automatically encrypt password when a new user is created.
How to encrypt password when a new user is created an how to decrypt password when user try to login?
Best regards,
Generally for passwords you use a stable hash rather than encryption. To check a password string you hash the string and compare to the stored value.
This has the advantage that passwords can not be stolen, as they are not stored.