I have a column with password_hash
in this when user enter something in textbox from page then this convert to this form in the SQL Server table.
For example, if the user enters 4512, then it is converted to this form:
90 119 218 156 223 147 36 245 171 86 241 32 174 66 192 226 34 75
How do I decrypt this with a T-SQL query?
Any solution ?