Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for AttributeTypeAndValue (0.81 seconds)

  1. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt

                      AttributeTypeAndValue(
                        type = localityName,
                        value = "San Francisco",
                      ),
                    ),
                    listOf(
                      AttributeTypeAndValue(
                        type = country,
                        value = "US",
                      ),
                    ),
                    listOf(
                      AttributeTypeAndValue(
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 43.9K bytes
    - Click Count (0)
  2. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/CertificateAdapters.kt

          },
        )
    
      /**
       * ```
       * AttributeTypeAndValue ::= SEQUENCE {
       *   type     AttributeType,
       *   value    AttributeValue
       * }
       *
       * AttributeType ::= OBJECT IDENTIFIER
       *
       * AttributeValue ::= ANY -- DEFINED BY AttributeType
       * ```
       */
      private val attributeTypeAndValue: BasicDerAdapter<AttributeTypeAndValue> =
        Adapters.sequence(
          "AttributeTypeAndValue",
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  3. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

        }
    
        private fun subject(): List<List<AttributeTypeAndValue>> {
          val result = mutableListOf<List<AttributeTypeAndValue>>()
    
          if (organizationalUnit != null) {
            result +=
              listOf(
                AttributeTypeAndValue(
                  type = ORGANIZATIONAL_UNIT_NAME,
                  value = organizationalUnit,
                ),
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 21.6K bytes
    - Click Count (0)
  4. api/go1.5.txt

    pkg crypto/x509, method (*CertificateRequest) CheckSignature() error
    pkg crypto/x509, type Certificate struct, UnhandledCriticalExtensions []asn1.ObjectIdentifier
    pkg crypto/x509/pkix, type Name struct, ExtraNames []AttributeTypeAndValue
    pkg database/sql, method (*DB) Stats() DBStats
    pkg database/sql, type DBStats struct
    pkg database/sql, type DBStats struct, OpenConnections int
    pkg debug/dwarf, const ClassAddress = 1
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Click Count (0)
Back to Top