Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,846 for req_ext (0.32 sec)

  1. tools/certs/common.mk

    	@echo "prompt = no" >> $@
    	@echo "utf8 = yes" >> $@
    	@echo "default_md = sha256" >> $@
    	@echo "default_bits = $(ROOTCA_KEYSZ)" >> $@
    	@echo "req_extensions = req_ext" >> $@
    	@echo "x509_extensions = req_ext" >> $@
    	@echo "distinguished_name = req_dn" >> $@
    	@echo "[ req_ext ]" >> $@
    	@echo "subjectKeyIdentifier = hash" >> $@
    	@echo "basicConstraints = critical, CA:true" >> $@
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 20 08:51:56 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. pkg/test/cert/ca/root.go

    	"istio.io/istio/pkg/test/cert"
    )
    
    var rootCAConf = `
    [ req ]
    encrypt_key = no
    prompt = no
    utf8 = yes
    default_md = sha256
    default_bits = 4096
    req_extensions = req_ext
    x509_extensions = req_ext
    distinguished_name = req_dn
    [ req_ext ]
    subjectKeyIdentifier = hash
    basicConstraints = critical, CA:true
    keyUsage = critical, digitalSignature, nonRepudiation, keyEncipherment, keyCertSign
    [ req_dn ]
    O = Istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. tools/certs/Makefile.selfsigned.mk

    .PHONY: root-ca
    
    root-ca: root-key.pem root-cert.pem
    
    root-cert.pem: root-cert.csr root-key.pem
    	@echo "generating $@"
    	@openssl x509 -req -sha256 -days $(ROOTCA_DAYS) -signkey root-key.pem \
    		-extensions req_ext -extfile root-ca.conf \
    		-in $< -out $@
    
    root-cert.csr: root-key.pem root-ca.conf
    	@echo "generating $@"
    	@openssl req -sha256 -new -key $< -config root-ca.conf -out $@
    
    root-key.pem:
    	@echo "generating $@"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 28 19:49:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. pkg/test/cert/cert.go

    }
    
    // GenerateCert and writes output to certFile.
    func GenerateCert(confFile, csrFile, keyFile, certFile string) error {
    	return openssl("x509", "-req",
    		"-days", "100000",
    		"-signkey", keyFile,
    		"-extensions", "req_ext",
    		"-extfile", confFile,
    		"-in", csrFile,
    		"-out", certFile)
    }
    
    // GenerateIntermediateCert from the rootCA and writes to certFile.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 22 14:18:21 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pkg/test/cert/ca/intermediate.go

    )
    
    const (
    	istioConfTemplate = `
    [ req ]
    encrypt_key = no
    prompt = no
    utf8 = yes
    default_md = sha256
    default_bits = 4096
    req_extensions = req_ext
    x509_extensions = req_ext
    distinguished_name = req_dn
    [ req_ext ]
    subjectKeyIdentifier = hash
    basicConstraints = critical, CA:true, pathlen:0
    keyUsage = critical, digitalSignature, nonRepudiation, keyEncipherment, keyCertSign
    subjectAltName=@san
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  6. tools/certs/Makefile.k8s.mk

    %/ca-cert.pem: %/cluster-ca.csr k8s-root-key.pem k8s-root-cert.pem
    	@echo "generating $@"
    	@openssl x509 -req -days $(INTERMEDIATE_DAYS) \
    		-CA k8s-root-cert.pem -CAkey k8s-root-key.pem -CAcreateserial\
    		-extensions req_ext -extfile $(dir $<)/intermediate.conf \
    		-in $< -out $@
    
    %/cluster-ca.csr: L=$(dir $@)
    %/cluster-ca.csr: %/ca-key.pem %/intermediate.conf
    	@echo "generating $@"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 27 13:15:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/net/http/request.go

    //
    // To create a new request with a context, use [NewRequestWithContext].
    // To make a deep copy of a request with a new context, use [Request.Clone].
    func (r *Request) WithContext(ctx context.Context) *Request {
    	if ctx == nil {
    		panic("nil context")
    	}
    	r2 := new(Request)
    	*r2 = *r
    	r2.ctx = ctx
    	return r2
    }
    
    // Clone returns a deep copy of r with its context changed to ctx.
    // The provided ctx must be non-nil.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. docs/de/docs/reference/request.md

    # `Request`-Klasse
    
    Sie können einen Parameter in einer *Pfadoperation-Funktion* oder einer Abhängigkeit als vom Typ `Request` deklarieren und dann direkt auf das Requestobjekt zugreifen, ohne jegliche Validierung, usw.
    
    Sie können es direkt von `fastapi` importieren:
    
    ```python
    from fastapi import Request
    ```
    
    !!! tip "Tipp"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Feb 19 15:53:18 UTC 2024
    - 596 bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/Request.kt

        }
    
        internal constructor(request: Request) {
          this.url = request.url
          this.method = request.method
          this.body = request.body
          this.tags =
            when {
              request.tags.isEmpty() -> mapOf()
              else -> request.tags.toMutableMap()
            }
          this.headers = request.headers.newBuilder()
          this.cacheUrlOverride = request.cacheUrlOverride
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-discovery/app/request.go

    import (
    	"net/http"
    	"time"
    
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/pilot/pkg/request"
    )
    
    var requestCmd = &cobra.Command{
    	Use:   "request <method> <path> [<body>]",
    	Short: "Makes an HTTP request to Pilot metrics/debug endpoint",
    	Args:  cobra.MinimumNArgs(2),
    	RunE: func(c *cobra.Command, args []string) error {
    		command := &request.Command{
    			Address: "127.0.0.1:15014",
    			Client: &http.Client{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 28 03:44:33 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top