In my ASP.NET MVC 5 app I have to retrieve the hashed password for SQL Server Logins with a query like this:
select password from sys.syslogins where name = 'name'
The result is:

How should I query the database to get a valid Base64 password?
The topmost item in stack trace is System.Convert.FromBase64_Decode.
[I'm trying to implement IUserPasswordStore, and it seems it expects the hashed passwords to be in Base64 format]