Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for TagUTCTime (0.21 sec)

  1. src/encoding/asn1/common.go

    	TagEnum            = 10
    	TagUTF8String      = 12
    	TagSequence        = 16
    	TagSet             = 17
    	TagNumericString   = 18
    	TagPrintableString = 19
    	TagT61String       = 20
    	TagIA5String       = 22
    	TagUTCTime         = 23
    	TagGeneralizedTime = 24
    	TagGeneralString   = 27
    	TagBMPString       = 30
    )
    
    // ASN.1 class types represent the namespace of the tag.
    const (
    	ClassUniversal       = 0
    	ClassApplication     = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  2. src/encoding/asn1/asn1.go

    			// PRINTABLE STRINGs so that a sequence of them can be
    			// parsed into a []string.
    			t.tag = TagPrintableString
    		case TagGeneralizedTime, TagUTCTime:
    			// Likewise, both time types are treated the same.
    			t.tag = TagUTCTime
    		}
    
    		if !matchAny && (t.class != ClassUniversal || t.isCompound != compoundType || t.tag != expectedTag) {
    			err = StructuralError{"sequence tag mismatch"}
    			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  3. api/go1.6.txt

    pkg encoding/asn1, const TagSet = 17
    pkg encoding/asn1, const TagSet ideal-int
    pkg encoding/asn1, const TagT61String = 20
    pkg encoding/asn1, const TagT61String ideal-int
    pkg encoding/asn1, const TagUTCTime = 23
    pkg encoding/asn1, const TagUTCTime ideal-int
    pkg encoding/asn1, const TagUTF8String = 12
    pkg encoding/asn1, const TagUTF8String ideal-int
    pkg go/build, const IgnoreVendor = 8
    pkg go/build, const IgnoreVendor ImportMode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 13 23:40:13 UTC 2016
    - 12.9K bytes
    - Viewed (0)
  4. src/encoding/asn1/marshal.go

    	}
    
    	matchAny, tag, isCompound, ok := getUniversalType(v.Type())
    	if !ok || matchAny {
    		return nil, StructuralError{fmt.Sprintf("unknown Go type: %v", v.Type())}
    	}
    
    	if params.timeType != 0 && tag != TagUTCTime {
    		return nil, StructuralError{"explicit time type given to non-time member"}
    	}
    
    	if params.stringType != 0 && tag != TagPrintableString {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. src/encoding/asn1/asn1_test.go

    	{"", fieldParameters{}},
    	{"ia5", fieldParameters{stringType: TagIA5String}},
    	{"generalized", fieldParameters{timeType: TagGeneralizedTime}},
    	{"utc", fieldParameters{timeType: TagUTCTime}},
    	{"printable", fieldParameters{stringType: TagPrintableString}},
    	{"numeric", fieldParameters{stringType: TagNumericString}},
    	{"optional", fieldParameters{optional: true}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 18:24:36 UTC 2023
    - 43.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"TagOID", Const, 6},
    		{"TagOctetString", Const, 6},
    		{"TagPrintableString", Const, 6},
    		{"TagSequence", Const, 6},
    		{"TagSet", Const, 6},
    		{"TagT61String", Const, 6},
    		{"TagUTCTime", Const, 6},
    		{"TagUTF8String", Const, 6},
    		{"Unmarshal", Func, 0},
    		{"UnmarshalWithParams", Func, 0},
    	},
    	"encoding/base32": {
    		{"(*Encoding).AppendDecode", Method, 22},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top