I have two websites that create users in their own ASP.NET authentication databases. Below are the Web.configs options for both. I also made aspnet_Applications
database aspnet_Applications
identical for both solutions. When I create a user, the encrypted passwords are not identical and are not salts of passwords.
Any idea of creating two websites creates the same password hashes when both systems have the same username and password?
<configuration> <system.web> <authentication mode="Forms" > <forms loginUrl="~/Account/Login" name=".ASPXAUTH" protection="All" path="/" domain="contoso.com" timeout="2880" requireSSL="false" cookieless="UseCookies" enableCrossAppRedirects="true" /> </authentication> <machineKey validationKey="C50B3C89CB21F4F1422FF158A5B42D0E8DB8CB5CDA1742572A487D940 1E3400267682B202B746511891C1BAF47F8D25C07F6C39A104696DB51 F17C529AD3CABE" decryptionKey="8A9BE8FD67AF6979E7D20198CFEA50DD3D3799C77AF2B72F" validation="SHA1" decryption="Auto" /> </system.web> </configuration>
source share