ClientCertificateSubjectDistinguishedNameResponse

data class ClientCertificateSubjectDistinguishedNameResponse(val commonName: String? = null, val countryCode: String? = null, val organization: String? = null, val organizationUnit: String? = null)

CA certificate subject distinguished name information used by service to authenticate clients. For more information, see https://docs.microsoft.com/en-us/dotnet/api/system.security.cryptography.x509certificates.x500distinguishedname?view=net-6.0#remarks

Constructors

constructor(commonName: String? = null, countryCode: String? = null, organization: String? = null, organizationUnit: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val commonName: String? = null

The common name field in the subject name. The allowed limit is 64 characters and it should be specified.

Link copied to clipboard
val countryCode: String? = null

The country code field in the subject name. If present, the country code should be represented by two-letter code defined in ISO 2166-1 (alpha-2). For example: 'US'.

Link copied to clipboard
val organization: String? = null

The organization field in the subject name. If present, the allowed limit is 64 characters.

Link copied to clipboard

The organization unit field in the subject name. If present, the allowed limit is 32 characters.