SubjectAltNames
Stay organized with collections
Save and categorize content based on your preferences.
SubjectAltNames
corresponds to a more modern way of listing what the asserted identity is in a certificate (i.e., compared to the "common name" in the distinguished name).
JSON representation |
{
"dnsNames": [
string
],
"uris": [
string
],
"emailAddresses": [
string
],
"ipAddresses": [
string
],
"customSans": [
{
object (X509Extension )
}
]
} |
Fields |
dnsNames[] |
string
Contains only valid, fully-qualified host names.
|
uris[] |
string
Contains only valid RFC 3986 URIs.
|
emailAddresses[] |
string
Contains only valid RFC 2822 E-mail addresses.
|
ipAddresses[] |
string
Contains only valid 32-bit IPv4 addresses or RFC 4291 IPv6 addresses.
|
customSans[] |
object (X509Extension )
Contains additional subject alternative name values. For each custom_san, the value field must contain an ASN.1 encoded UTF8String.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-03-18 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-18 UTC."],[[["SubjectAltNames provide a modern method for defining the asserted identity within a certificate, replacing the older \"common name\" approach."],["The JSON representation of SubjectAltNames includes fields for DNS names, URIs, email addresses, IP addresses, and custom SANs."],["Each field within SubjectAltNames, such as `dnsNames`, `uris`, `emailAddresses`, and `ipAddresses`, is designed to hold specific types of data and follows strict formatting guidelines, such as RFC compliance."],["The `customSans` field allows for the inclusion of additional subject alternative name values, encoded as ASN.1 UTF8Strings, offering flexibility beyond standard fields."]]],[]]