Encrypted ConnectionString Mit dieser Solution ist es möglich den ConnectionString der normalerweise im Klartext in der .cs Datei bzw. .exe Datei steht zu verschlüsseln und in der Applikation wieder zu entschlüsseln. 1. Zuerst wird der ConnectionString in einer "Applikation".config Datei verschlüsselt abgespeichert mit dem EncryptedConnectionStringBuilderProject Projekt. 2. Danach wird in der Applikation dieser String wieder ausgelesen über: z.B.: SqlServerConnectionString ExampleConnectionString = new SqlServerConnectionString("SqlServer"); SqlConnection connection = new SqlConnection(ExampleConnectionString.GetValue()); et voila : ConnectionString mit Password ist nirgends mehr ersichtlich. PROBLEM: Ich behaupte, wenn jemand meine .config hat, kann er sich auch den ConnectionString holen, genau gleich wie ich es im Code mache. Dürfte für diesen kein Problem sein.
Latest Posts
Popular Posts
-
I am *very* keen on automating tests, so I was looking into unit testing a WCF service. If I say "unit test", I mean a fast ,...
-
It's easy I thought, just select the Property of the EntityType and set the Default Value in the Properties window to: DateTime.Now ...
-
*Updated* 26. September 2010: Updated with comments from Adam Cogan *Updated* 27. September 2010: Updated the comparison between anonymo...
No comments:
Post a Comment