Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RawContent (0.08 sec)

  1. 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)
  2. 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)
Back to top