Hello,
We are using SharePoint 2010 with SQL Server FBA DB.
We had some users in FBA DB with un-encrypted Users and later team has deployed some application update for SharePoint where FBA DB Password was made encrypted. So after this deployment all new users are having encrypted password.
OLD Table (aspnet_Membership)
UserId Password PasswordFormat
-------------------------------------
Id PlainPass 0
Id PlainPass 0
After Update (aspnet_Membership) all new users are now encrypted. So this caused mixed users in DB.
UserId Password PasswordFormat
-------------------------------------
Id1 PlainPass 0
Id2 PlainPass 0
Id3 EncryptedPass 1
Id4 EncryptedPass 1
--------------------------------------
How can I fix the application/FBA DB now so that ALL Users will have Encrypted Password? Or any update that I can do the DB where OLD unencrypted password will be become encrypted or some?
What is the BEST way to get all users under encrypted?
Thanks.