Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ia5 (0.04 sec)

  1. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt

            },
        )
    
      /**
       * Based on International Alphabet No. 5. Note that there are bytes that IA5 and US-ASCII
       * disagree on interpretation.
       *
       * TODO(jwilson): constrain to IA5 characters.
       */
      val IA5_STRING =
        BasicDerAdapter(
          name = "IA5 STRING",
          tagClass = DerHeader.TAG_CLASS_UNIVERSAL,
          tag = 22L,
          codec =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. src/encoding/asn1/marshal_test.go

    }
    
    type flagTest struct {
    	A Flag `asn1:"tag:0,optional"`
    }
    
    type generalizedTimeTest struct {
    	A time.Time `asn1:"generalized"`
    }
    
    type ia5StringTest struct {
    	A string `asn1:"ia5"`
    }
    
    type printableStringTest struct {
    	A string `asn1:"printable"`
    }
    
    type genericStringTest struct {
    	A string
    }
    
    type optionalRawValueTest struct {
    	A RawValue `asn1:"optional"`
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 10K bytes
    - Viewed (0)
  3. src/encoding/asn1/marshal.go

    	return t, nil
    }
    
    // Marshal returns the ASN.1 encoding of val.
    //
    // In addition to the struct tags recognized by Unmarshal, the following can be
    // used:
    //
    //	ia5:         causes strings to be marshaled as ASN.1, IA5String values
    //	omitempty:   causes empty slices to be skipped
    //	printable:   causes strings to be marshaled as ASN.1, PrintableString values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

        val bytes = "0c04f09f988e".decodeHex()
        assertThat(Adapters.UTF8_STRING.fromDer(bytes)).isEqualTo("\uD83D\uDE0E")
        assertThat(Adapters.UTF8_STRING.toDer("\uD83D\uDE0E")).isEqualTo(bytes)
      }
    
      @Test fun `ia5 string`() {
        val bytes = "16026869".decodeHex()
        assertThat(Adapters.IA5_STRING.fromDer(bytes)).isEqualTo("hi")
        assertThat(Adapters.IA5_STRING.toDer("hi")).isEqualTo(bytes)
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. src/encoding/asn1/asn1.go

    // Unmarshal will default to a PrintableString, which doesn't support
    // characters such as '@' and '&'. To force other encodings, use the following
    // tags:
    //
    //	ia5     causes strings to be unmarshaled as ASN.1 IA5String values
    //	numeric causes strings to be unmarshaled as ASN.1 NumericString values
    //	utf8    causes strings to be unmarshaled as ASN.1 UTF8String values
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  6. src/encoding/asn1/asn1_test.go

    func newString(s string) *string { return &s }
    
    func newBool(b bool) *bool { return &b }
    
    var parseFieldParametersTestData []parseFieldParametersTest = []parseFieldParametersTest{
    	{"", fieldParameters{}},
    	{"ia5", fieldParameters{stringType: TagIA5String}},
    	{"generalized", fieldParameters{timeType: TagGeneralizedTime}},
    	{"utc", fieldParameters{timeType: TagUTCTime}},
    	{"printable", fieldParameters{stringType: TagPrintableString}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 18:24:36 UTC 2023
    - 43.6K bytes
    - Viewed (0)
Back to top