|
|
 |
| C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code. |
Welcome to the p2p.wrox.com Forums.
You are currently viewing the C# section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
|
 |

July 16th, 2009, 07:26 PM
|
|
Registered User
|
|
Join Date: Jul 2009
Posts: 4
Thanks: 1
Thanked 0 Times in 0 Posts
|
|
How to hash 2 columns of SQL table
Dear experts,
I have a MS SQL table, let's called it "year_end", there is a column with sensitive data called "customer ID", I would like to hash the "customer ID" column by the identity column and then load it into a new table row by row with the hash result. Example:
The "year_end" table:
name varchar(30)
address varchar(30)
customer_ID char(9)
The new "year_end" table:
name varchar(30)
address varchar(30)
customer_ID ???? (hash value)
I need the codes in C# to do this. Do I use Console application to do this or ASP.NET? I am new to C#.
Thanks in advance.
|

July 17th, 2009, 03:55 AM
|
 |
Friend of Wrox
|
|
Join Date: Aug 2007
Location: Newcastle, , United Kingdom.
Posts: 1,359
Thanks: 0
Thanked 31 Times in 31 Posts
|
|
Well I can see now reason to do it as a ASP.Net web application, unless you have a need for a cross browser interface to this 'functionality'. Either way the code will be the same.
I'd recommend a MD5 hash of the column. A simple search for "MD5 C#" should provide you with the samples you need.
__________________
/- Sam Judson : Wrox Technical Editor -/
|
|
The Following User Says Thank You to samjudson For This Useful Post:
|
Mattt (August 25th, 2009) |

July 17th, 2009, 04:08 AM
|
 |
Wrox Author
|
|
Join Date: Jun 2003
Location: Exeter, , United Kingdom.
Posts: 2,922
Thanks: 0
Thanked 13 Times in 12 Posts
|
|
As an alternative I'd take a look at SQL Server's built-in encryption features.
__________________
--
Joe
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
|
 |