Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for RawContent (0.15 sec)

  1. src/encoding/asn1/asn1.go

    	IsCompound bool
    	Bytes      []byte
    	FullBytes  []byte // includes the tag and length
    }
    
    // RawContent is used to signal that the undecoded, DER data needs to be
    // preserved for a struct. To use it, the first field of the struct must have
    // this type. It's an error for any of the other fields to have this type.
    type RawContent []byte
    
    // Tagging
    
    // parseTagAndLength parses an ASN.1 tag and length pair from the given offset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  2. src/crypto/x509/pkix/pkix.go

    // TBSCertificateList represents the ASN.1 structure of the same name. See RFC
    // 5280, section 5.1.
    //
    // Deprecated: x509.RevocationList should be used instead.
    type TBSCertificateList struct {
    	Raw                 asn1.RawContent
    	Version             int `asn1:"optional,default:0"`
    	Signature           AlgorithmIdentifier
    	Issuer              RDNSequence
    	ThisUpdate          time.Time
    	NextUpdate          time.Time            `asn1:"optional"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    // signature requests (see RFC 2986):
    
    type tbsCertificateRequest struct {
    	Raw           asn1.RawContent
    	Version       int
    	Subject       asn1.RawValue
    	PublicKey     publicKeyInfo
    	RawAttributes []asn1.RawValue `asn1:"tag:0"`
    }
    
    type certificateRequest struct {
    	Raw                asn1.RawContent
    	TBSCSR             tbsCertificateRequest
    	SignatureAlgorithm pkix.AlgorithmIdentifier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    				Message:              "This is a test TCP message",
    				ProxyProtocolVersion: 1,
    				Check: check.Each(
    					func(r echoClient.Response) error {
    						body := r.RawContent
    						ok := strings.Contains(body, "PROXY TCP4")
    						if ok {
    							return fmt.Errorf("sent proxy protocol header, and it was echoed back")
    						}
    						return nil
    					}),
    			},
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Enumerated", Type, 0},
    		{"Flag", Type, 0},
    		{"Marshal", Func, 0},
    		{"MarshalWithParams", Func, 10},
    		{"NullBytes", Var, 9},
    		{"NullRawValue", Var, 9},
    		{"ObjectIdentifier", Type, 0},
    		{"RawContent", Type, 0},
    		{"RawValue", Type, 0},
    		{"RawValue.Bytes", Field, 0},
    		{"RawValue.Class", Field, 0},
    		{"RawValue.FullBytes", Field, 0},
    		{"RawValue.IsCompound", Field, 0},
    		{"RawValue.Tag", Field, 0},
    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