views:

26

answers:

2

I have a SQL Server database with some sensitive info. I want to encrypt communications between this database and a remote webservice. How is this achieved?

+2  A: 
  1. There's encryption available in Sql Server (symmetric, asymmetric keys, certificates).
  2. An endpoint with SSL and encryption.
Denis Valeev
+4  A: 

Encrypt the connection using SSL:

LukeH