CertificateSubjectPublicKeyInfoValidator Constructor (IEnumerable<String>, SubjectPublicKeyInfoAlgorithm)
Initializes a new instance of the CertificateSubjectPublicKeyInfoValidator class.
Namespace: Microsoft.Owin.Security
Assembly: Microsoft.Owin.Security (in Microsoft.Owin.Security.dll)
Syntax
public CertificateSubjectPublicKeyInfoValidator(
IEnumerable<string> validBase64EncodedSubjectPublicKeyInfoHashes,
SubjectPublicKeyInfoAlgorithm algorithm
)
public:
CertificateSubjectPublicKeyInfoValidator(
IEnumerable<String^>^ validBase64EncodedSubjectPublicKeyInfoHashes,
SubjectPublicKeyInfoAlgorithm algorithm
)
new :
validBase64EncodedSubjectPublicKeyInfoHashes:IEnumerable<string> *
algorithm:SubjectPublicKeyInfoAlgorithm -> CertificateSubjectPublicKeyInfoValidator
Public Sub New (
validBase64EncodedSubjectPublicKeyInfoHashes As IEnumerable(Of String),
algorithm As SubjectPublicKeyInfoAlgorithm
)
Parameters
validBase64EncodedSubjectPublicKeyInfoHashes
Type: System.Collections.Generic.IEnumerable<String>A collection of valid base64 encoded hashes of the certificate public key information blob.
algorithm
Type: Microsoft.Owin.Security.SubjectPublicKeyInfoAlgorithmThe algorithm used to generate the hashes.
See Also
CertificateSubjectPublicKeyInfoValidator Class
Microsoft.Owin.Security Namespace
Return to top