密碼編譯設定的 <mscorlib> 項目
更新:2007 年 11 月
<configuration> 項目
密碼編譯設定的 <mscorlib> 項目
<mscorlib>
</mscorlib>
屬性和項目
下列章節會說明屬性 (Attribute)、子項目和父項目。
屬性
無
子項目
項目 |
描述 |
---|---|
cryptographySettings |
包含密碼編譯設定。 |
父項目
項目 |
描述 |
---|---|
configuration |
每一個組態檔中的根項目是由 Common Language Runtime 和 .NET Framework 應用程式所使用的。 |
範例
以下範例說明如何使用 <mscorlib> 項目參考密碼編譯類別及設定執行階段。接著您可以將 "RSA" 字串傳遞給 CryptoConfig.CreateFromName 方法,並使用 Create 方法傳回 MyCryptoRSAClass 物件。
<configuration>
<mscorlib>
<cryptographySettings>
<cryptoNameMapping>
<cryptoClasses>
<cryptoClass MyCryptoRSA="MyCryptoRSAClass, MyAssembly
Culture=neutral, PublicKeyToken=a5d015c7d5a0b012,
Version=1.0.0.0"/>
</cryptoClasses>
<nameEntry name="RSA" class="MyCryptoRSA"/>
<nameEntry name="System.Security.Cryptography.AsymmetricAlgorithm"
class="MyCryptoRSA"/>
</cryptoNameMapping>
</cryptographySettings>
</mscorlib>
</configuration>