Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ca2 (0.02 sec)

  1. security/pkg/pki/testdata/multilevelpki/int2-cert.cfg

    stateOrProvinceName = CA
    stateOrProvinceName_default = CA
    localityName = Sunnyvale
    localityName_default = Sunnyvale
    organizationalUnitName = Istio
    organizationalUnitName_default = Istio
    commonName = Intermediate CA2
    commonName_default = Intermediate CA2
    commonName_max  = 64
    
    [v3_req]
    basicConstraints = CA:TRUE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 06 04:49:04 UTC 2018
    - 528 bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/sdsservice_test.go

    	var server *Server
    	st := ca2.NewDirectSecretManager()
    	st.Set(testResourceName, &ca2.SecretItem{
    		CertificateChain: fakeCertificateChain,
    		PrivateKey:       fakePrivateKey,
    		ResourceName:     testResourceName,
    	})
    	st.Set(ca2.RootCertReqResourceName, &ca2.SecretItem{
    		RootCert:     fakeRootCert,
    		ResourceName: ca2.RootCertReqResourceName,
    	})
    
    	opts := &ca2.Options{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 17 20:12:58 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. security/pkg/pki/testdata/multilevelpki/ecc-certs.sh

    # limitations under the License.
    
    # This script generates all keys and certs in the 3level directory.
    # There are 3 entities: root CA, intermediate CA and intermediate CA2. The certificates of the 3 CAs form a certification chain.
    
    # Root CA
    #openssl ecparam -genkey -name prime256v1 -out ecc-root-key.pem -noout
    openssl req -new -key ecc-root-key.pem -out ecc-root-cert.csr -sha256 <<EOF
    US
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 16 19:54:33 UTC 2020
    - 2K bytes
    - Viewed (0)
  4. security/pkg/pki/testdata/multilevelpki/certs.sh

    # limitations under the License.
    
    # This script generates all keys and certs in the 3level directory.
    # There are 3 entities: root CA, intermeidate CA and intermediate CA2. The certificates of the 3 CAs form a certification chain.
    
    # 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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  5. src/go/doc/testdata/d.2.golden

    CONSTANTS
    	// CBx constants should appear before CAx constants. 
    	const (
    		CB2	= iota	// before CB1
    		CB1		// before CB0
    		CB0		// at end
    	)
    
    	// CAx constants should appear after CBx constants. 
    	const (
    		CA2	= iota	// before CA1
    		CA1		// before CA0
    		CA0		// at end
    	)
    
    	// C0 should be first. 
    	const C0 = 0
    
    	// C1 should be second. 
    	const C1 = 1
    
    	// C2 should be third. 
    	const C2 = 2
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  6. src/go/doc/testdata/d2.go

    const C1 = 1
    
    // C0 should be first.
    const C0 = 0
    
    // V1 should be second.
    var V1 uint
    
    // V0 should be first.
    var V0 uintptr
    
    // CAx constants should appear after CBx constants.
    const (
    	CA2 = iota // before CA1
    	CA1        // before CA0
    	CA0        // at end
    )
    
    // VAx variables should appear after VBx variables.
    var (
    	VA2 int // before VA1
    	VA1 int // before VA0
    	VA0 int // at end
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 789 bytes
    - Viewed (0)
  7. src/go/doc/testdata/d.0.golden

    CONSTANTS
    	// CBx constants should appear before CAx constants. 
    	const (
    		CB2	= iota	// before CB1
    		CB1		// before CB0
    		CB0		// at end
    	)
    
    	// CAx constants should appear after CBx constants. 
    	const (
    		CA2	= iota	// before CA1
    		CA1		// before CA0
    		CA0		// at end
    	)
    
    	// C0 should be first. 
    	const C0 = 0
    
    	// C1 should be second. 
    	const C1 = 1
    
    	// C2 should be third. 
    	const C2 = 2
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  8. src/go/doc/testdata/d.1.golden

    CONSTANTS
    	// CBx constants should appear before CAx constants. 
    	const (
    		CB2	= iota	// before CB1
    		CB1		// before CB0
    		CB0		// at end
    	)
    
    	// CAx constants should appear after CBx constants. 
    	const (
    		CA2	= iota	// before CA1
    		CA1		// before CA0
    		CA0		// at end
    	)
    
    	// C0 should be first. 
    	const C0 = 0
    
    	// C1 should be second. 
    	const C1 = 1
    
    	// C2 should be third. 
    	const C2 = 2
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
Back to top