Base solution for your next web application
Open Closed

Password migration from ASP.NET Identity #2239


User avatar
0
renevalencia created

Hi!!

I'm migrating my project to aspnetboilerplate. Migrate users from the old AspNetUsers table to AbpUsers, but I was not able to authenticate. The aspnetboilerplate hash password is different from my project, which uses ASP.NET Identity.

Thank you!!


2 Answer(s)
  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi,

    You can create a new PasswordHasher and change UserManager's PasswordHasher to it. You can take a look at this article <a class="postlink" href="http://travis.io/blog/2015/03/24/migrate-from-aspnet-membership-to-aspnet-identity/">http://travis.io/blog/2015/03/24/migrat ... -identity/</a>. It has a sample SqlPasswordHasher class which might work for you.

  • User Avatar
    0
    renevalencia created

    I'm going to try it, thanks!!