Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for T61String (0.58 sec)

  1. src/crypto/x509/parser_test.go

    	tests := []struct {
    		name        string
    		tag         cryptobyte_asn1.Tag
    		value       []byte
    		expected    string
    		expectedErr string
    	}{
    		{
    			name:     "T61String",
    			tag:      cryptobyte_asn1.T61String,
    			value:    []byte{80, 81, 82},
    			expected: string("PQR"),
    		},
    		{
    			name:     "PrintableString",
    			tag:      cryptobyte_asn1.PrintableString,
    			value:    []byte{80, 81, 82},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 17:18:21 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/cryptobyte/asn1/asn1.go

    	OBJECT_IDENTIFIER = Tag(6)
    	ENUM              = Tag(10)
    	UTF8String        = Tag(12)
    	SEQUENCE          = Tag(16 | classConstructed)
    	SET               = Tag(17 | classConstructed)
    	PrintableString   = Tag(19)
    	T61String         = Tag(20)
    	IA5String         = Tag(22)
    	UTCTime           = Tag(23)
    	GeneralizedTime   = Tag(24)
    	GeneralString     = Tag(27)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  3. src/encoding/asn1/asn1.go

    	for _, b := range bytes {
    		if b >= utf8.RuneSelf {
    			err = SyntaxError{"IA5String contains invalid character"}
    			return
    		}
    	}
    	ret = string(bytes)
    	return
    }
    
    // T61String
    
    // parseT61String parses an ASN.1 T61String (8-bit clean string) from the given
    // byte slice and returns it.
    func parseT61String(bytes []byte) (ret string, err error) {
    	return string(bytes), nil
    }
    
    // UTF8String
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  4. src/crypto/x509/parser.go

    }
    
    // parseASN1String parses the ASN.1 string types T61String, PrintableString,
    // UTF8String, BMPString, IA5String, and NumericString. This is mostly copied
    // from the respective encoding/asn1.parse... methods, rather than just
    // increasing the API surface of that package.
    func parseASN1String(tag cryptobyte_asn1.Tag, value []byte) (string, error) {
    	switch tag {
    	case cryptobyte_asn1.T61String:
    		return string(value), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top