ALTER PROCEDURE GetCryptUsername
(
@UserName varchar(max)
)
As
Begin
select convert(varchar(100),DecryptByPassPhrase('key', @UserName)) as 'Username'
End
--GetCryptUsername 0x01000000555ba945074e8369491243b04c62b8616acca44dd0fc984b045472a02c697e93
I unable to Decrypt.
0x01000000555ba945074e8369491243b04c62b8616acca44dd0fc984b045472a02c697e93 is comming from c#.net as like this "
"0x01000000555ba945074e8369491243b04c62b8616acca44dd0fc984b045472a02c697e93"please help me how to decrypt
Go to the complete details ...