Hide C # application connection string in web service

I have performed many queries to check how to encrypt the SQL connection string in app.config of a C # application. I found that using aspnet_regiis is not safe, since anyone on the client computer can decrypt it, if he knows what to do, some of them advise using web services, I could not find how to give examples?

Thank,

+4
source share
1 answer

You need to create a layer between your client application and the SQL server. This is a repeating pattern in modern applications.

-, , sql. , SQL .

+3

Source: https://habr.com/ru/post/1656085/


All Articles