- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for OpenJSSE (0.06 sec)
-
okhttp/build.gradle.kts
implementation(libs.openjsse) implementation(libs.junit.jupiter.engine) implementation(libs.junit.vintage.engine) if (platform == "conscrypt") { implementation(rootProject.libs.conscrypt.openjdk) } else if (platform == "openjsse") { implementation(rootProject.libs.openjsse) } } }
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Nov 01 12:18:11 UTC 2025 - 12.3K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/testing/PlatformRule.kt
if (!OpenJSSEPlatform.isSupported) { System.err.println("Warning: OpenJSSE not available") } if (System.getProperty("javax.net.debug") == null) { System.setProperty("javax.net.debug", "") } Security.insertProviderAt(OpenJSSE(), 1)
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 15.4K bytes - Viewed (1) -
docs/changelogs/changelog_4x.md
* Fix: Embed Proguard rules to prevent warnings from tools like DexGuard and R8. These warnings were triggered by OkHttp’s feature detection for TLS packages like `org.conscrypt`, `org.bouncycastle`, and `org.openjsse`. * Upgrade: Explicitly depend on `kotlin-stdlib-jdk8`. This fixes a problem with dependency locking. That's a potential security vulnerability, tracked as [CVE-2022-24329].Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Apr 17 13:25:31 UTC 2024 - 25.2K bytes - Viewed (0) -
.github/workflows/build.yml
java-version: 17 - name: Setup Gradle uses: gradle/actions/setup-gradle@v5 - name: Run Tests run: ./gradlew test allTests -Dtest.java.version=8 -Dokhttp.platform=openjsse testconscrypt: runs-on: ubuntu-latest if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'conscrypt') steps: - name: CheckoutRegistered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Dec 12 04:49:37 UTC 2025 - 18.6K bytes - Viewed (0)