X509ThumbprintKeyIdentifierClause 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.
Initializes a new instance of the X509ThumbprintKeyIdentifierClause class.
Overloads
X509ThumbprintKeyIdentifierClause(Byte[]) |
Initializes a new instance of the X509ThumbprintKeyIdentifierClause class using the specified thumbprint for an X.509 certificate. |
X509ThumbprintKeyIdentifierClause(X509Certificate2) |
Initializes a new instance of the X509ThumbprintKeyIdentifierClause class using the specified X.509 certificate. |
X509ThumbprintKeyIdentifierClause(Byte[])
Initializes a new instance of the X509ThumbprintKeyIdentifierClause class using the specified thumbprint for an X.509 certificate.
public:
X509ThumbprintKeyIdentifierClause(cli::array <System::Byte> ^ thumbprint);
public X509ThumbprintKeyIdentifierClause (byte[] thumbprint);
new System.IdentityModel.Tokens.X509ThumbprintKeyIdentifierClause : byte[] -> System.IdentityModel.Tokens.X509ThumbprintKeyIdentifierClause
Public Sub New (thumbprint As Byte())
Parameters
Exceptions
Applies to
X509ThumbprintKeyIdentifierClause(X509Certificate2)
Initializes a new instance of the X509ThumbprintKeyIdentifierClause class using the specified X.509 certificate.
public:
X509ThumbprintKeyIdentifierClause(System::Security::Cryptography::X509Certificates::X509Certificate2 ^ certificate);
public X509ThumbprintKeyIdentifierClause (System.Security.Cryptography.X509Certificates.X509Certificate2 certificate);
new System.IdentityModel.Tokens.X509ThumbprintKeyIdentifierClause : System.Security.Cryptography.X509Certificates.X509Certificate2 -> System.IdentityModel.Tokens.X509ThumbprintKeyIdentifierClause
Public Sub New (certificate As X509Certificate2)
Parameters
- certificate
- X509Certificate2
An X509Certificate2 that contains the X.509 certificate.
Exceptions
certificate
is null
.
Remarks
This constructor obtains the thumbprint (the SHA-1 hash value of the X.509 certificate raw data) by calling the GetCertHash method.