Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/04/09 19:42:18 (15 years ago)
Author:
svonolfe
Message:

Passwords are now stored in MD5 in the database (#532)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Security.ADODataAccess/3.2/HLUserAdapter.cs

    r1729 r1737  
    5555
    5656        if (!row.IsPasswordNull())
    57           user.Password = row.Password;
     57          user.SetPlainPassword(row.Password);
    5858        else
    59           user.Password = String.Empty;
     59          user.SetPlainPassword(String.Empty);
    6060
    6161        if (!row.IsMailAddressNull())
Note: See TracChangeset for help on using the changeset viewer.