we use EPiServer CMS and Community 7.5 and we need to exports some users information.
In Episerver Community, when users are created, we look that some information are stored into the table [dbo].[tblEPiServerCommonUser]. In this table we have also a binPassword field (in HEX like '0x487C1D......') that contains the users password but I noticed that if I create two users with the same password, the results into binPassword on DB are different.
We use the CommunitySystem.CurrentContext.DefaultSecurity to creation and authentication.
In web.config we set:
...
....
Can you tell me if there is a password salt somewhere and what kind of encryption algorithm is used?
Hi there,
we use EPiServer CMS and Community 7.5 and we need to exports some users information.
In Episerver Community, when users are created, we look that some information are stored into the table [dbo].[tblEPiServerCommonUser]. In this table we have also a binPassword field (in HEX like '0x487C1D......') that contains the users password but I noticed that if I create two users with the same password, the results into binPassword on DB are different.
We use the CommunitySystem.CurrentContext.DefaultSecurity to creation and authentication.
In web.config we set:
Can you tell me if there is a password salt somewhere and what kind of encryption algorithm is used?
Thank you!