<nameEntry> 元素

将类名称映射到友好算法名称,允许一个类具有多个友好名称。

configuration
  <mscorlib>
    <cryptographySettings>
      <cryptoNameMapping>
        <nameEntry>

语法

<nameEntry name="friendly name" Class="class name" />  

特性和元素

下列各节描述了特性、子元素和父元素。

特性

属性 描述
name 必需的特性。

指定加密类实现的算法的易记名称。
class 必需的特性。

<cryptoClass> 元素中的 name 特性指定值。

子元素

无。

父元素

元素 说明
configuration 公共语言运行时和 .NET Framework 应用程序所使用的每个配置文件中的根元素。
system.web 为 ASP.NET 配置节指定根元素。

备注

Name 属性可以是位于 System.Security.Cryptography 命名空间中某个抽象类的名称。 对抽象加密类调用 Create 方法时,系统会将抽象类名称传递给 CreateFromName 方法。 Cryptoconfig.createfromname 可返回“类”属性指示的类型的实例。 如果 name 属性是一个短名称,例如 RSA,则可以在调用 cryptoconfig.createfromname 方法时使用该名称。

示例

下面的示例演示如何使用 <nameEntry> 元素来引用一个加密类并配置运行时。 然后,可将字符串“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>  

请参阅