AJM
AJM

Reputation: 32490

Encrypting Communication with SQL Server Database

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?

Upvotes: 2

Views: 746

Answers (2)

LukeH
LukeH

Reputation: 269278

Encrypt the connection using SSL:

Upvotes: 4

Denis Valeev
Denis Valeev

Reputation: 6015

  1. There's encryption available in Sql Server (symmetric, asymmetric keys, certificates).
  2. An endpoint with SSL and encryption.

Upvotes: 2

Related Questions