- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 163 for Trusted (0.07 seconds)
-
okhttp/src/jvmTest/kotlin/okhttp3/CertificateChainCleanerTest.kt
selfSigned.certificate, trusted.certificate, ) assertThat(cleaner.clean(list(certB, certA), "hostname")).isEqualTo( list(certB, certA, trusted, selfSigned), ) assertThat(cleaner.clean(list(certB, certA, trusted), "hostname")).isEqualTo( list(certB, certA, trusted, selfSigned), ) assertThat(cleaner.clean(list(certB, certA, trusted, selfSigned), "hostname")) .isEqualTo(Created: 2026-04-03 11:42 - Last Modified: 2025-03-19 19:25 - 9.5K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/helper/RateLimitHelper.java
} /** * Check if the IP is a trusted proxy. * @param ip the IP address to check * @return true if the IP is a trusted proxy */ protected boolean isTrustedProxy(final String ip) { final Set<String> trustedProxies = ComponentUtil.getFessConfig().getRateLimitTrustedProxiesAsSet(); final boolean trusted = trustedProxies.contains(ip);Created: 2026-03-31 13:07 - Last Modified: 2025-12-24 14:16 - 9.4K bytes - Click Count (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt
/** * Configure the certificate chain to use when being authenticated. The first certificate is * the held certificate, further certificates are included in the handshake so the peer can * build a trusted path to a trusted root certificate. * * The chain should include all intermediate certificates but does not need the root certificate * that we expect to be known by the remote peer. The peer already has that certificate soCreated: 2026-04-03 11:42 - Last Modified: 2025-05-10 11:15 - 8.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/RateLimitHelperTest.java
assertEquals("192.168.1.100", rateLimitHelper.getClientIp(request)); } @Test public void test_getClientIp_xForwardedFor_trustedProxy() { // 127.0.0.1 is configured as a trusted proxy by default final MockletHttpServletRequest request = getMockRequest(); request.setRemoteAddr("127.0.0.1"); request.addHeader("X-Forwarded-For", "203.0.113.50, 70.41.3.18, 150.172.238.178");
Created: 2026-03-31 13:07 - Last Modified: 2026-01-14 14:29 - 4K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/BasicCertificateChainCleaner.kt
val toVerify = result[result.size - 1] as X509Certificate // If this cert has been signed by a trusted cert, use that. Add the trusted certificate to // the end of the chain unless it's already present. (That would happen if the first // certificate in the chain is itself a self-signed and trusted CA certificate.) val trustedCert = trustRootIndex.findByIssuerAndSignature(toVerify) if (trustedCert != null) {
Created: 2026-04-03 11:42 - Last Modified: 2025-03-19 19:25 - 4.8K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt
* * * The victim's gets a non-CA certificate signed by a CA, and pins the CA root and/or * intermediate. This is business as usual. * * ``` * pinnedRoot (trusted by CertificatePinner) * -> pinnedIntermediate (trusted by CertificatePinner) * -> realVictim * ``` * * The attacker compromises a CA. They take the public key from an intermediate certificate
Created: 2026-04-03 11:42 - Last Modified: 2026-01-27 09:00 - 24.4K bytes - Click Count (2) -
okhttp-tls/README.md
----------------------- The above example uses a self-signed certificate. This is convenient for testing but not representative of real-world HTTPS deployment. To get closer to that we can use `HeldCertificate` to generate a trusted root certificate, an intermediate certificate, and a server certificate. We use `certificateAuthority(int)` to create certificates that can sign other certificates. The
Created: 2026-04-03 11:42 - Last Modified: 2026-03-15 09:01 - 9.1K bytes - Click Count (0) -
helm/minio/templates/_helpers.tpl
{{/* Formats volumeMount for MinIO TLS keys and trusted certs */}} {{- define "minio.tlsKeysVolumeMount" -}} {{- if .Values.tls.enabled }} - name: cert-secret-volume mountPath: {{ .Values.certsPath }} {{- end }} {{- if or .Values.tls.enabled (ne .Values.trustedCertsSecret "") }} {{- $casPath := printf "%s/CAs" .Values.certsPath | clean }} - name: trusted-cert-secret-volume mountPath: {{ $casPath }} {{- end }}Created: 2026-04-05 19:28 - Last Modified: 2025-08-06 23:48 - 6.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/Dfs.java
/** * Cache of trusted domains for DFS resolution */ protected CacheEntry _domains = null; /* aka trusted domains cache */ /** * Cache of DFS referrals */ protected CacheEntry referrals = null; /** * Gets the map of trusted domains for DFS resolution * @param auth the authentication credentials * @return a map of trusted domain names to domain controllersCreated: 2026-04-05 00:10 - Last Modified: 2025-08-16 01:32 - 14.2K bytes - Click Count (0) -
helm/minio/README.md
``` kubectl -n minio create secret generic minio-trusted-certs --from-file=keycloak.crt ``` The name of the generated secret can then be passed to Helm using a values file or the `--set` parameter: ``` trustedCertsSecret: "minio-trusted-certs" or --set trustedCertsSecret=minio-trusted-certs ``` ### Create buckets after install
Created: 2026-04-05 19:28 - Last Modified: 2025-08-12 18:20 - 10.9K bytes - Click Count (0)