| Begriff |
Protected Configuration |
| Abkürzung |
|
| Synonyme/Aliase |
|
Erläuterung des Begriffs
Protected Configuration
- In .NET 2.0 können Elemente einer Konfigurationsdatei verschlüsselt werden.
- Festlegung der zu verschlüsselnden Elemente erfolgt in <ProtectedData>
- aber: nicht alle Sektionen können verschlüsselt werden (Ausnahmen z.B. <mscorlib>, <system.runtime.remoting> und <protectedData>)
- verwendet XML Encryption (W3C, http://www.w3.org/TR/xmlenc-core/)
<configuration>
<protectedData>
<protectedDataSections>
<add name="connectionStrings" provider="RSAProtectedConfigurationProvider" />
</protectedDataSections>
</protectedData>
Querverweise zu anderen Begriffen im Lexikon
System.Runtime.Remoting Konfigurationsdatei Ausnahme
|