Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,256 for chain (0.05 sec)

  1. security/pkg/server/ca/server.go

    	// Sign generates a certificate for a workload or CA, from the given CSR and cert opts.
    	Sign(csrPEM []byte, opts ca.CertOpts) ([]byte, error)
    	// SignWithCertChain is similar to Sign but returns the leaf cert and the entire cert chain.
    	SignWithCertChain(csrPEM []byte, opts ca.CertOpts) ([]string, error)
    	// GetCAKeyCertBundle returns the KeyCertBundle used by CA.
    	GetCAKeyCertBundle() *util.KeyCertBundle
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. security/pkg/server/ca/monitoring.go

    		"citadel_server_cert_chain_expiry_timestamp",
    		"The unix timestamp, in seconds, when Citadel cert chain will expire. "+
    			"A negative time indicates the cert is expired.",
    	)
    	certChainExpirySeconds = monitoring.NewDerivedGauge(
    		"citadel_server_cert_chain_expiry_seconds",
    		"The time remaining, in seconds, before the certificate chain will expire. "+
    			"A negative value indicates the cert is expired.",
    	)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:09 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. releasenotes/notes/31168.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 31166
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 04 02:28:42 UTC 2021
    - 198 bytes
    - Viewed (0)
  4. src/crypto/x509/cert_pool.go

    	return true
    }
    
    // AddCertWithConstraint adds a certificate to the pool with the additional
    // constraint. When Certificate.Verify builds a chain which is rooted by cert,
    // it will additionally pass the whole chain to constraint to determine its
    // validity. If constraint returns a non-nil error, the chain will be discarded.
    // constraint may be called concurrently from multiple goroutines.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

            ClassWriter classWriter = new ClassWriter(ClassWriter.COMPUTE_MAXS);
            Pair<RelativePath, ClassVisitor> chain = transform.apply(classEntry, classWriter, new ClassData(reader, content, typeRegistry));
            reader.accept(chain.right, 0);
            byte[] bytes = classWriter.toByteArray();
            builder.put(chain.left.getPathString(), bytes, classEntry.getCompressionMethod());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/testdata/secret/output

    RESOURCE NAME     TYPE           STATUS     VALID CERT     SERIAL NUMBER                        NOT AFTER                NOT BEFORE
    default           Cert Chain     ACTIVE     false          6fbee254c22900615cb1f74e3d2f1713     2023-05-16T01:32:52Z     2023-05-15T01:30:52Z
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 06 15:14:48 UTC 2023
    - 416 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/toolingApi-connect.puml

    User -> DefaultGradleConnector: connect()
    DefaultGradleConnector -> ConnectionFactory: create()
    ConnectionFactory --> DefaultGradleConnector: DefaultProjectConnection
    note left
    With a chain of ConsumerActionExecutors
    and tooling implementation loader
    end note
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 606 bytes
    - Viewed (0)
  8. releasenotes/notes/51377.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    issue:
      - 51377
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 201 bytes
    - Viewed (0)
  9. security/pkg/server/ca/authenticate/cert_authenticator_test.go

    			caller:             nil,
    			authenticateErrMsg: "unsupported auth type: \"not-tls\"",
    			fakeAuthInfo:       &mockAuthInfo{"not-tls"},
    		},
    		"Empty cert chain": {
    			certChain:          [][]*x509.Certificate{},
    			caller:             nil,
    			authenticateErrMsg: "no verified chain is found",
    		},
    		"Certificate has no SAN": {
    			certChain: [][]*x509.Certificate{
    				{
    					{
    						Version: 1,
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 05 01:20:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. releasenotes/notes/44388.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 44385
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 14 19:45:35 UTC 2023
    - 239 bytes
    - Viewed (0)
Back to top