Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 512 for chains (0.15 sec)

  1. tests/integration/security/cacert_rotation/main_test.go

    				"ca-cert-alt.pem", "ca-key-alt.pem",
    				"cert-chain-alt.pem", "root-cert-combined-2.pem"); err != nil {
    				t.Errorf("failed to update CA secret: %v", err)
    			}
    
    			lastUpdateTime = waitForWorkloadCertUpdate(t, from[0], istioCtl, lastUpdateTime)
    
    			// step 3: Remove the old root cert
    			if err := cert.CreateCustomCASecret(t,
    				"ca-cert-alt.pem", "ca-key-alt.pem",
    				"cert-chain-alt.pem", "root-cert-alt.pem"); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. tests/integration/security/egress_sidecar_tls_origination_test.go

    			ingressutil.CreateIngressKubeSecretInNamespace(t, credNameGeneric, ingressutil.Mtls, ingressutil.IngressCredential{
    				Certificate: file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/cert-chain.pem")),
    				PrivateKey:  file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/key.pem")),
    				CaCert:      file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/root-cert.pem")),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. security/pkg/pki/util/crypto_test.go

    BB6nORpwdv4LVt/BFgLwWQIdAKvHn7cxBJ+aAC25rIumRNKDzP7PkV0HDbxtX+M=
    -----END CERTIFICATE-----`
    )
    
    var (
    	certChainValid             = loadPEMFile("../testdata/cert-chain.pem")
    	certChainValidTrailingLine = loadPEMFile("../testdata/cert-chain-trailing-line.pem")
    )
    
    func TestParsePemEncodedCertificate(t *testing.T) {
    	testCases := map[string]struct {
    		errMsg        string
    		pem           string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

        client: OkHttpClient,
        chain: RealInterceptorChain,
      ): ExchangeCodec {
        val socket = this.socket!!
        val source = this.source!!
        val sink = this.sink!!
        val http2Connection = this.http2Connection
    
        return if (http2Connection != null) {
          Http2ExchangeCodec(client, this, chain, http2Connection)
        } else {
          socket.soTimeout = chain.readTimeoutMillis()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/auth/chain/AuthenticationChain.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.auth.chain;
    
    import org.codelibs.fess.es.user.exentity.User;
    
    public interface AuthenticationChain {
    
        void update(User user);
    
        void delete(User user);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 899 bytes
    - Viewed (0)
  6. tests/integration/security/ca_custom_root/secure_naming_test.go

    					}
    				})
    			}
    		})
    }
    
    func verifyCertificatesWithPluginCA(t framework.TestContext, certs []string) {
    	// Verify that the certificate chain length is as expected
    	if len(certs) != exampleCertChainLength {
    		t.Errorf("expect %v certs in the cert chain but getting %v certs",
    			exampleCertChainLength, len(certs))
    		return
    	}
    	var rootCert []byte
    	var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ParallelDownloadsPerformanceTest.groovy

            @Override
            void init(FilterConfig filterConfig) throws ServletException {
    
            }
    
            @Override
            void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
                HttpServletRequest httpRequest = (HttpServletRequest) request
                def path = httpRequest.servletPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/PropertyAccessResolver.kt

                    onProperty(ObjectOrigin.PropertyReference(receiverOrigin, property, propertyAccess))
                }
            }
    
            propertyAccess.asChainOrNull()?.let { chain ->
                schema.externalObjectsByFqName[chain.asFqName()]?.let { externalObject ->
                    onExternalObject(ObjectOrigin.External(externalObject, propertyAccess))
                }
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  9. tests/integration/security/egress_gateway_origination_test.go

    			ingressutil.CreateIngressKubeSecret(t, credNameGeneric, ingressutil.Mtls, ingressutil.IngressCredential{
    				Certificate: file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/cert-chain.pem")),
    				PrivateKey:  file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/key.pem")),
    				CaCert:      file.AsStringOrFail(t, path.Join(env.IstioSrc, "tests/testdata/certs/dns/root-cert.pem")),
    			}, false)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. pilot/pkg/security/model/authentication_test.go

    					TLSServerCertChain: "/custom/path/to/cert-chain.pem",
    					TLSServerKey:       "/custom-key.pem",
    					TLSServerRootCert:  "/custom/path/to/root.pem",
    				},
    			},
    			validateClient: true,
    			expected: &auth.CommonTlsContext{
    				TlsCertificateSdsSecretConfigs: []*auth.SdsSecretConfig{
    					{
    						Name: "file-cert:/custom/path/to/cert-chain.pem~/custom-key.pem",
    						SdsConfig: &core.ConfigSource{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:21 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top