Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 568 for certChain (0.31 sec)

  1. istioctl/pkg/writer/ztunnel/configdump/testdata/dump.json

        {
          "identity": "spiffe://cluster.local/ns/istio-system/sa/ztunnel",
          "state": "Initializing",
          "certChain": []
        },
        {
          "identity": "spiffe://cluster.local/ns/istio-system/sa/another-sa",
          "state": "Unavailable: the identity is no longer needed",
          "certChain": []
        },
        {
          "identity": "spiffe://cluster.local/ns/istio-system/sa/istiod",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/ca_test.go

    				t.Errorf("NewSelfSignedIstioCAOptions got unexpected error: %v", err)
    			}
    			cert, privateKey, certChain, rootCert := caOpts.KeyCertBundle.GetAllPem()
    			if !bytes.Equal(cert, rootCert) {
    				t.Error("Root cert and cert do not match")
    			}
    			// self signed certs do not contain cert chain
    			if len(certChain) > 0 {
    				t.Error("Cert chain should not exist")
    			}
    			rootCertCh <- rootCert
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  3. security/pkg/server/ca/server.go

    		}
    	}
    	if len(rootCertBytes) != 0 {
    		respCertChain = append(respCertChain, string(rootCertBytes))
    	}
    	response := &pb.IstioCertificateResponse{
    		CertChain: respCertChain,
    	}
    	s.monitoring.Success.Increment()
    	serverCaLog.Debugf("CSR successfully signed, sans %v.", caller.Identities)
    	return response, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. security/pkg/pki/ca/ca.go

    // Adds the "istio-generated" key if the secret name is `cacerts`.
    func BuildSecret(scrtName, namespace string, certChain, privateKey, rootCert, caCert, caPrivateKey []byte, secretType v1.SecretType) *v1.Secret {
    	secret := &v1.Secret{
    		Data: map[string][]byte{
    			CertChainFile:    certChain,
    			PrivateKeyFile:   privateKey,
    			RootCertFile:     rootCert,
    			CACertFile:       caCert,
    			CAPrivateKeyFile: caPrivateKey,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. security/pkg/pki/util/keycertbundle.go

    // KeyCertBundle stores the cert, private key, cert chain and root cert for an entity. It is thread safe.
    // The cert and privKey should be a public/private key pair.
    // The cert should be verifiable from the rootCert through the certChain.
    // cert and priveKey are pointers to the cert/key parsed from certBytes/privKeyBytes.
    type KeyCertBundle struct {
    	certBytes      []byte
    	cert           *x509.Certificate
    	privKeyBytes   []byte
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jan 21 06:07:50 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. security/pkg/nodeagent/cache/secretcache_test.go

    	rootResource := security.RootCertReqResourceName
    	if sds {
    		workloadResource = sc.existingCertificateFile.GetResourceName()
    		rootResource = sc.existingCertificateFile.GetRootResourceName()
    	}
    
    	certchain, err := os.ReadFile(sc.existingCertificateFile.CertificatePath)
    	if err != nil {
    		t.Fatalf("Error reading the cert chain file: %v", err)
    	}
    	privateKey, err := os.ReadFile(sc.existingCertificateFile.PrivateKeyPath)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	r0, _, e1 := syscall.Syscall6(procCertFindChainInStore.Addr(), 6, uintptr(store), uintptr(certEncodingType), uintptr(findFlags), uintptr(findType), uintptr(findPara), uintptr(unsafe.Pointer(prevChainContext)))
    	certchain = (*CertChainContext)(unsafe.Pointer(r0))
    	if certchain == nil {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys   CertFindChainInStore(store Handle, certEncodingType uint32, findFlags uint32, findType uint32, findPara unsafe.Pointer, prevChainContext *CertChainContext) (certchain *CertChainContext, err error) [failretval==nil] = crypt32.CertFindChainInStore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/FakeKeyStore.java

            certChains.remove(alias);
        }
    
        @Override
        public Enumeration<String> engineAliases() {
            return Collections.enumeration(keys.keySet());
        }
    
        @Override
        public boolean engineContainsAlias(String alias) {
            return keys.containsKey(alias) || certChains.containsKey(alias);
        }
    
        @Override
        public int engineSize() {
            return keys.size() + certChains.size();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/UserClassFilePermissions.java

     */
    public interface UserClassFilePermissions {
    
        /**
         * Describes if a certain class of users has read access to a file or directory.
         * <p>
         * Read access is the capability to view the contents of a file, or to list the contents of a directory.
         */
        boolean getRead();
    
        /**
         * Describes if a certain class of users has write access to a file or directory.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top