Reputation: 21108
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
Upvotes: -1
Views: 792
Reputation: 17516
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
Upvotes: 0