C
C.
Hey all,
I'm dealing with a legacy ASP app, and I believe to prevent passwords
from being casually observed in the database, the developer converted
the password to VARBINARY:
qry = "UPDATE Users SET Password = CONVERT( VARBINARY, '" &
newPassword & "' ), "
***SNIP****
I now have to ensure those passwords conform to our new security
policy before a migration. How does one convert a VARBINARY type back
to a string in C#?
I'm dealing with a legacy ASP app, and I believe to prevent passwords
from being casually observed in the database, the developer converted
the password to VARBINARY:
qry = "UPDATE Users SET Password = CONVERT( VARBINARY, '" &
newPassword & "' ), "
***SNIP****
I now have to ensure those passwords conform to our new security
policy before a migration. How does one convert a VARBINARY type back
to a string in C#?