The SubjectIdentifierType enumeration defines the type of subject identifier.
public enum SubjectIdentifierType
Public Enum SubjectIdentifierType
public enum class SubjectIdentifierType
Name | Description |
---|
Unknown | The type of subject identifier is unknown. |
IssuerAndSerialNumber | The subject is identified by the certificate issuer and serial number. |
SubjectKeyIdentifier | The subject is identified by the hash of the subject's public key. The hash algorithm used is determined by the signature algorithm suite in the subject's certificate. |
PublicKey | The subject is identified by the subject's public key. |
Top