Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for parseTagAndLength (0.12 sec)

  1. src/encoding/asn1/marshal.go

    	}
    
    	dst = appendTwoDigits(dst, offsetMinutes/60)
    	dst = appendTwoDigits(dst, offsetMinutes%60)
    
    	return dst
    }
    
    func stripTagAndLength(in []byte) []byte {
    	_, offset, err := parseTagAndLength(in, 0)
    	if err != nil {
    		return in
    	}
    	return in[offset:]
    }
    
    func makeBody(value reflect.Value, params fieldParameters) (e encoder, err error) {
    	switch value.Type() {
    	case flagType:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
Back to top