Tools to encrypt sql server database

后端 未结 6 1510
野的像风
野的像风 2021-02-06 15:05

I don\'t want customers to be able to make backups of my sql server database and access the tables data etc.

I know there are some products that will encrypt the data in

6条回答
  •  一个人的身影
    2021-02-06 15:48

    You can encrypt stored procedures, which can protect your logic.

    TDE is available only Enterprise edition.

    I can't find if it supports native sql encryption - but you could find this out with a little searching. But if it did you could probably set the database master key with your application and keep all of the decryption/encryption code in your application.

    If it doesn't support native encryption, you might want to creat/find your own encryption functions in your application language and lock away the keys in your code.

提交回复
热议问题