- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 89 for encrypto (0.11 seconds)
-
src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java
} /** * Stores a web authentication configuration. * Parameters are encrypted before storage. * * @param webAuthentication The web authentication configuration to store */ public void store(final WebAuthentication webAuthentication) { webAuthentication.setParameters(ParameterUtil.encrypt(webAuthentication.getParameters())); webAuthenticationBhv.insertOrUpdate(webAuthentication, op -> {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java
/** * Stores a file authentication configuration. * The parameters are encrypted before storage for security. * * @param fileAuthentication the file authentication configuration to store */ public void store(final FileAuthentication fileAuthentication) { fileAuthentication.setParameters(ParameterUtil.encrypt(fileAuthentication.getParameters()));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/FileConfigService.java
* This method encrypts the configuration parameters before saving and * performs an insert or update operation based on whether the configuration exists. * * @param fileConfig the file configuration to be stored */ public void store(final FileConfig fileConfig) { fileConfig.setConfigParameter(ParameterUtil.encrypt(fileConfig.getConfigParameter()));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.4K bytes - Click Count (0) -
CLAUDE.md
├── collection/ # Enhanced collections (LruHashMap, CaseInsensitiveMap) ├── concurrent/ # Concurrency utilities ├── convert/ # Type conversion (*ConversionUtil) ├── crypto/ # Cipher & encryption (CachedCipher) ├── exception/ # Runtime exception wrappers ├── io/ # I/O & resource utilities ├── jar/ # JAR file utilities ├── lang/ # Reflection & language utilities
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Mar 12 03:38:56 GMT 2026 - 3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
} /** * Stores a web configuration. * Configuration parameters are encrypted before storage. * * @param webConfig The web configuration to store */ public void store(final WebConfig webConfig) { webConfig.setConfigParameter(ParameterUtil.encrypt(webConfig.getConfigParameter())); webConfigBhv.insertOrUpdate(webConfig, op -> {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/DataConfigService.java
return OptionalEntity.empty(); } return OptionalEntity.of(list.get(0)); } /** * Stores (inserts or updates) a data configuration. * * <p>This method encrypts sensitive handler parameters before storing * and immediately refreshes the index to ensure the change is visible. * If the configuration already exists (based on ID), it will be updated;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8K bytes - Click Count (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt
// Consuming server Finished handshake message // Produced ClientHello handshake message // // Raw write // Raw read // Plaintext before ENCRYPTION // Plaintext after DECRYPTION val message = record.message val parameters = record.parametersCreated: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 10.9K bytes - Click Count (0) -
android-test/src/androidDeviceTest/java/okhttp/android/test/letsencrypt/LetsEncryptClientTest.kt
import okhttp3.Request import okhttp3.tls.HandshakeCertificates import okhttp3.tls.decodeCertificatePem import org.junit.jupiter.api.Tag import org.junit.jupiter.api.Test /** * Test for new Let's Encrypt Root Certificate. */ @Tag("Remote") class LetsEncryptClientTest { @Test fun get() { // These tests wont actually run before Android 8.0 as per // https://github.com/mannodermaus/android-junit5
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Mon Jan 26 07:38:51 GMT 2026 - 4.4K bytes - Click Count (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/CustomTrust.kt
eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m 0vdXcDazv/wor3ElhVsT/h5/WrQ8 -----END CERTIFICATE----- """.trimIndent().decodeCertificatePem() // CN=Let's Encrypt Authority X3, O=Let's Encrypt, C=US val letsEncryptCertificateAuthority = """ -----BEGIN CERTIFICATE----- MIIEkjCCA3qgAwIBAgIQCgFBQgAAAVOFc2oLheynCDANBgkqhkiG9w0BAQsFADA/Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 8.8K bytes - Click Count (0) -
okhttp-tls/src/test/java/okhttp3/tls/HandshakeCertificatesTest.kt
.toSet() // It's safe to assume all platforms will have a major Internet certificate issuer. val majorIssuers = listOf( "DigiCert", "Let's Encrypt", "ISRG", // Internet Security Research Group (Let's Encrypt parent) "GlobalSign", "Comodo", "Sectigo", "GeoTrust", "Entrust", ) assertThat(names).matchesPredicate { strings ->
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 08:16:15 GMT 2026 - 7.5K bytes - Click Count (0)