SigningCredentials Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SigningCredentials(X509Certificate2) |
Initializes a new instance of the SigningCredentials class. |
SigningCredentials(SecurityKey, String) |
Initializes a new instance of the SigningCredentials class. |
SigningCredentials(X509Certificate2, String) |
Initializes a new instance of the SigningCredentials class. |
SigningCredentials(SecurityKey, String, String) |
Initializes a new instance of the SigningCredentials class. |
SigningCredentials(X509Certificate2)
Initializes a new instance of the SigningCredentials class.
protected SigningCredentials (System.Security.Cryptography.X509Certificates.X509Certificate2 certificate);
new Microsoft.IdentityModel.Tokens.SigningCredentials : System.Security.Cryptography.X509Certificates.X509Certificate2 -> Microsoft.IdentityModel.Tokens.SigningCredentials
Protected Sub New (certificate As X509Certificate2)
Parameters
- certificate
- X509Certificate2
X509Certificate2 that will be used for signing.
Exceptions
if 'algorithm' is null or empty.
Remarks
Algorithm will be set to RsaSha256. the 'digest method' if needed may be implied from the algorithm. For example RsaSha256 implies Sha256.
Applies to
SigningCredentials(SecurityKey, String)
Initializes a new instance of the SigningCredentials class.
public SigningCredentials (Microsoft.IdentityModel.Tokens.SecurityKey key, string algorithm);
new Microsoft.IdentityModel.Tokens.SigningCredentials : Microsoft.IdentityModel.Tokens.SecurityKey * string -> Microsoft.IdentityModel.Tokens.SigningCredentials
Public Sub New (key As SecurityKey, algorithm As String)
Parameters
- key
- SecurityKey
- algorithm
- String
The signature algorithm to be used.
Exceptions
if 'algorithm' is null or empty.
Remarks
the 'digest method' if needed may be implied from the algorithm. For example HmacSha256Signature implies Sha256.
Applies to
SigningCredentials(X509Certificate2, String)
Initializes a new instance of the SigningCredentials class.
protected SigningCredentials (System.Security.Cryptography.X509Certificates.X509Certificate2 certificate, string algorithm);
new Microsoft.IdentityModel.Tokens.SigningCredentials : System.Security.Cryptography.X509Certificates.X509Certificate2 * string -> Microsoft.IdentityModel.Tokens.SigningCredentials
Protected Sub New (certificate As X509Certificate2, algorithm As String)
Parameters
- certificate
- X509Certificate2
X509Certificate2 that will be used for signing.
- algorithm
- String
The signature algorithm to be used.
Exceptions
if 'algorithm' is null or empty.
Remarks
the 'digest method' if needed may be implied from the algorithm. For example RsaSha256 implies Sha256.
Applies to
SigningCredentials(SecurityKey, String, String)
Initializes a new instance of the SigningCredentials class.
public SigningCredentials (Microsoft.IdentityModel.Tokens.SecurityKey key, string algorithm, string digest);
new Microsoft.IdentityModel.Tokens.SigningCredentials : Microsoft.IdentityModel.Tokens.SecurityKey * string * string -> Microsoft.IdentityModel.Tokens.SigningCredentials
Public Sub New (key As SecurityKey, algorithm As String, digest As String)
Parameters
- key
- SecurityKey
- algorithm
- String
The signature algorithm to be used.
- digest
- String
The digest algorithm to be used.
Exceptions
if 'digest' is null or empty.