views:

32

answers:

2

I want to encrypt and decrypt data with sql server using RSA or SHA algorithm rahter than doing it at UI.

Is it possible to do this.

Some Code Snippet will be a great help

A: 

if u need to encrpt only a string (Can't Decrypt these are One way)

u may try

HashBytes ('<algorithm>', { @input | 'input' } )<algorithm>::= MD2 | MD4 | MD5 | SHA | SHA1

ref : http://technet.microsoft.com/en-us/library/ms174415.aspx

RSK