Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  1. build-tools-internal/src/main/resources/test/ssl/test-node.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. 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)
  3. 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)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ForbiddenPatternsTask.java

            .include("**")
            // exclude known binary extensions
            .exclude("**/*.gz")
            .exclude("**/*.ico")
            .exclude("**/*.jar")
            .exclude("**/*.zip")
            .exclude("**/*.jks")
            .exclude("**/*.crt")
            .exclude("**/*.keystore")
            .exclude("**/*.png")
            // vim swap file - included here to stop the build falling over if you happen to have a file open :-|
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.8K bytes
    - Click Count (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

        // http://openjdk.java.net/jeps/229
        // http://hg.openjdk.java.net/jdk9/jdk9/jdk/file/2c1c21d11e58/src/share/classes/sun/security/pkcs12/PKCS12KeyStore.java#l596
        val keystoreType = if (platform.isJdk9()) "JKS" else null
        val x509KeyManager = newKeyManager(keystoreType, heldCertificate, *intermediates)
        val trustManager =
          newTrustManager(
            keystoreType,
            emptyList(),
            emptyList(),
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 24.4K bytes
    - Click Count (2)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/main/assemblies/files/fess.in.sh

    #SEARCH_ENGINE_HTTP_URL=http://localhost:9200
    #FESS_DICTIONARY_PATH=/var/lib/opensearch/config/
    
    # SSL truststore for certificate validation over https
    #FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Djavax.net.ssl.trustStore=/tech/elastic/config/truststore.jks"
    #FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Djavax.net.ssl.trustStorePassword=changeit"
    
    # min and max heap sizes should be set to the same value to avoid
    # stop-the-world GC pauses during resize, and so that we can lock the
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 03:48:59 GMT 2025
    - 5.3K bytes
    - Click Count (0)
Back to Top