Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for JKS (0.01 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/main/resources/test/ssl/test-client.jks

    Rene Groeschke <******@****.***> 1622539170 +0200
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 3.6K bytes
    - Click Count (0)
  2. internal/config/identity/openid/jwks_test.go

    	} else if len(jk.Keys) != 3 {
    		t.Fatalf("Expected 3 keys, got %d", len(jk.Keys))
    	}
    
    	var kids []string
    	for ii, jks := range jk.Keys {
    		_, err := jks.DecodePublicKey()
    		if err != nil {
    			t.Fatalf("Failed to decode key %d: %v", ii, err)
    		}
    		kids = append(kids, jks.Kid)
    	}
    	if len(kids) != 3 {
    		t.Fatalf("Failed to find the expected number of kids: 3, got %d", len(kids))
    	}
    }
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Jan 02 17:15:06 GMT 2022
    - 9.8K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/resources/test/ssl/README.md

    4. Import the node certificate in the client's keystore:
       `keytool -import -alias test-node -keystore test-client.jks -storepass keypass -file test-node.crt -noprompt`
    5. Export the client's certificate:
       `keytool -export -alias test-client -keystore test-client.jks -storepass keypass -file test-client.crt`
    6. Import the client certificate in the node's keystore:
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.5K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/TestWithSslPlugin.java

                    t.copy("test/ssl/test-client.crt");
                    t.copy("test/ssl/test-client.key");
                    t.copy("test/ssl/test-client.jks");
                    t.copy("test/ssl/test-node.crt");
                    t.copy("test/ssl/test-node.key");
                    t.copy("test/ssl/test-node.jks");
                    t.setOutputDir(keyStoreDir);
                });
            project.getPlugins()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.1K bytes
    - Click Count (0)
  5. src/main/assemblies/files/fess.in.bat

    set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Dlog4j.skipJansi=true
    
    REM SSL truststore for certificate validation over https
    REM FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Djavax.net.ssl.trustStore=/tech/elastic/config/truststore.jks
    REM FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Djavax.net.ssl.trustStorePassword=changeit
    
    REM Causes the JVM to dump its heap on OutOfMemory.
    REM set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -XX:+HeapDumpOnOutOfMemoryError
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 03:48:59 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  6. TESTING.asciidoc

    ------------------------------------------------
    
    in `build.gradle`.
    
    === Limitations
    
    The following should be taken into consideration when writing new tests or adjusting existing ones:
    
    ==== TLS
    
    `JKS` and `PKCS#12` keystores cannot be used in FIPS mode. If the test depends on being able to use
    a keystore, it can be muted when needed ( see `ESTestCase#inFipsJvm` ). Alternatively, one can use
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 13:55:20 GMT 2021
    - 32.5K bytes
    - Click Count (0)
Back to Top