Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 211 for genrsa (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testcerts/gencerts.sh

    EOF
    
    # Create a certificate authority
    openssl genrsa -out CAKey.pem 2048
    openssl req -x509 -new -nodes -key CAKey.pem -days 100000 -out CACert.pem -subj "/CN=${CN_BASE}_ca"
    
    # Create a second certificate authority
    openssl genrsa -out BadCAKey.pem 2048
    openssl req -x509 -new -nodes -key BadCAKey.pem -days 100000 -out BadCACert.pem -subj "/CN=${CN_BASE}_ca"
    
    # Create a server certiticate
    openssl genrsa -out ServerKey.pem 2048
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 24 05:55:09 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  2. plugin/pkg/admission/imagepolicy/gencerts.sh

    extendedKeyUsage = clientAuth
    EOF
    
    # Create a certificate authority
    openssl genrsa -out caKey.pem 2048
    openssl req -x509 -new -nodes -key caKey.pem -days 100000 -out caCert.pem -subj "/CN=webhook_imagepolicy_ca"
    
    # Create a second certificate authority
    openssl genrsa -out badCAKey.pem 2048
    openssl req -x509 -new -nodes -key badCAKey.pem -days 100000 -out badCACert.pem -subj "/CN=webhook_imagepolicy_ca"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 10 14:59:09 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  3. tests/integration/security/sds_ingress/util/generate_certs.sh

    openssl genrsa -out "${WD}/clientA.key" 2048
    openssl req -new -key "${WD}/clientA.key" -out "${WD}/clientA.csr" -subj "/CN=*.example.com" -config "${WD}/client.conf"
    openssl x509 -req -days 3650 -CA "${WD}/rootA.crt" -CAkey "${WD}/rootA.key" -set_serial 0 -in "${WD}/clientA.csr" -out "${WD}/clientA.crt" -extensions v3_req -extfile "${WD}/client.conf"
    
    openssl genrsa -out "${WD}/serverA.key" 2048
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 22:01:21 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. tools/certs/Makefile.selfsigned.mk

    		-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 $@"
    	@openssl genrsa -out $@ 4096
    #------------------------------------------------------------------------
    ##<name>-cacerts: generate self signed intermediate certificates for <name> and store them under <name> directory.
    .PHONY: %-cacerts
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 28 19:49:09 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/gencerts.sh

    # Create a certificate authority
    openssl genrsa -out caKey.pem 2048
    openssl req -x509 -new -nodes -key caKey.pem -days 100000 -out caCert.pem -subj "/CN=webhook_authz_ca"
    
    # Create a second certificate authority
    openssl genrsa -out badCAKey.pem 2048
    openssl req -x509 -new -nodes -key badCAKey.pem -days 100000 -out badCACert.pem -subj "/CN=webhook_authz_ca"
    
    # Create a server certiticate
    openssl genrsa -out serverKey.pem 2048
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 23 02:28:04 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  6. security/pkg/pki/testdata/multilevelpki/certs.sh

    # Root CA
    #openssl genrsa -out root-key.pem 4096
    openssl req -new -key root-key.pem -out root-cert.csr -sha256 <<EOF
    US
    California
    Sunnyvale
    Istio
    Test
    Root CA
    ******@****.***
    
    
    EOF
    openssl x509 -req -days 3650 -in root-cert.csr -sha256 -signkey root-key.pem -out root-cert.pem
    
    # Intermediate CA
    #openssl genrsa -out int-key.pem 4096
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/webhook/gencerts.sh

    subjectAltName = @alt_names
    [alt_names]
    IP.1 = 127.0.0.1
    EOF
    
    # Create a certificate authority
    openssl genrsa -out caKey.pem 2048
    openssl req -x509 -new -nodes -key caKey.pem -days 100000 -out caCert.pem -subj "/CN=${CN_BASE}_ca"
    
    # Create a second certificate authority
    openssl genrsa -out badCAKey.pem 2048
    openssl req -x509 -new -nodes -key badCAKey.pem -days 100000 -out badCACert.pem -subj "/CN=${CN_BASE}_ca"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 15:57:40 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  8. tests/testdata/certs/generate.sh

    keyUsage = nonRepudiation, digitalSignature, keyEncipherment
    extendedKeyUsage = clientAuth, serverAuth
    subjectAltName = @alt_names
    [alt_names]
    DNS = cluster.local
    EOF
    
    # Create a certificate authority
    openssl genrsa -out "${WD}/pilot/ca-key.pem" 2048
    openssl req -x509 -new -nodes -key "${WD}/pilot/ca-key.pem" -days 100000 -out "${WD}/pilot/root-cert.pem" -subj "/CN=cluster.local"
    cp "${WD}/pilot/root-cert.pem" "${WD}/default/root-cert.pem"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:49:21 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. pkg/testcerts/generate-certs.sh

    [alt_names]
    IP.1 = 127.0.0.1
    IP.2 = ::1
    EOF
    
    outfile=testcerts.go
    
    # Create a certificate authority
    openssl genrsa -out CAKey.pem 2048
    openssl req -x509 -new -nodes -key CAKey.pem -days 100000 -out CACert.pem -subj "/CN=${CN_BASE}_ca"
    
    # Create a server certificate
    openssl genrsa -out ServerKey.pem 2048
    openssl req -new -key ServerKey.pem -out server.csr -subj "/CN=${CN_BASE}_server" -config server.conf
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. tests/testdata/certs/README.md

    # Self-signed certificates
    
        openssl genrsa -out cert.key 2048
        openssl req -new -x509 -sha256 -key cert.key -out cert.crt -days 3650
    
    For the common name, please type the following FQDN:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 02 23:54:48 UTC 2018
    - 215 bytes
    - Viewed (0)
Back to top