The scenario is that I want to encrypt financial numbers in a column with an int data type in a sql server table. This is a great application, so it’s difficult to change the table column data type from int to any other data type.
I am using sql server 2005 and asp.net c #.
Is there a two-way encryption method for a column with an int data type?
Is it possible to use a custom function in SQL Server 2005 or perhaps a C # method?
source
share