AsymmetricSecurityKey.GetSignatureFormatter(String) 方法

定义

在派生类中重写时,获取数字签名的格式化程序算法。When overridden in a derived class, gets the formatter algorithm for the digital signature.

public:
 abstract System::Security::Cryptography::AsymmetricSignatureFormatter ^ GetSignatureFormatter(System::String ^ algorithm);
public abstract System.Security.Cryptography.AsymmetricSignatureFormatter GetSignatureFormatter (string algorithm);
abstract member GetSignatureFormatter : string -> System.Security.Cryptography.AsymmetricSignatureFormatter
Public MustOverride Function GetSignatureFormatter (algorithm As String) As AsymmetricSignatureFormatter

参数

algorithm
String

数字签名的格式化程序算法。The formatter algorithm for the digital signature.

返回

AsymmetricSignatureFormatter

一个 AsymmetricSignatureFormatter,它表示数字签名的格式化程序算法。An AsymmetricSignatureFormatter that represents the formatter algorithm for the digital signature.

注解

签名格式化程序通常用于生成数字签名。Typically, a signature formatter is used to generate a digital signature.

使用 SecurityAlgorithms 类的静态字段指定算法。Use the static fields of the SecurityAlgorithms class to specify the algorithm.

适用于