Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for sensitive (0.1 sec)

  1. src/main/java/jcifs/audit/SecurityAuditLogger.java

        /**
         * Enable or disable sensitive data masking
         *
         * @param enable true to enable masking
         */
        public void setSensitiveDataMaskingEnabled(boolean enable) {
            this.maskSensitiveData = enable;
            log.info("Sensitive data masking {}", enable ? "enabled" : "disabled");
        }
    
        /**
         * Enable or disable high performance mode for sensitive data masking
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  2. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

        server.enqueue(
          MockResponse
            .Builder()
            .addHeader("SeNsItIvE", "Value")
            .addHeader("Not-Sensitive", "Value")
            .build(),
        )
        val response =
          client
            .newCall(
              request()
                .addHeader("SeNsItIvE", "Value")
                .addHeader("Not-Sensitive", "Value")
                .build(),
            ).execute()
        response.body.close()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 14:27:04 UTC 2025
    - 37.5K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * Used for compilation, execution and Javadoc among others.
         * The Java tools location is {@link StandardLocation#CLASS_PATH}.
         *
         * <h4>Context-sensitive interpretation</h4>
         * A dependency with this path type will not necessarily be placed on the class path.
         * There are two circumstances where the dependency may nevertheless be placed somewhere else:
         *
         * <ul>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jun 26 07:56:58 UTC 2025
    - 15K bytes
    - Viewed (1)
  4. src/main/java/jcifs/util/SecureCredentialStorage.java

    /**
     * Secure credential storage with encryption at rest.
     *
     * Provides secure storage of passwords and other sensitive credentials
     * using AES-GCM encryption with PBKDF2 key derivation.
     *
     * Features:
     * - Encrypts credentials at rest using AES-256-GCM
     * - Uses PBKDF2 for key derivation from master password
     * - Secure wiping of sensitive data
     * - Thread-safe operations
     * - Protection against timing attacks
     */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java

            auth.secureWipePassword();
            assertNull(auth.getPassword());
        }
    
        /**
         * Test that closed authenticator prevents all sensitive operations
         */
        @Test
        @DisplayName("Test closed authenticator blocks all sensitive operations")
        public void testClosedAuthenticatorBlocking() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Headers.kt

      /**
       * Returns header names and values. The names and values are separated by `: ` and each pair is
       * followed by a newline character `\n`.
       *
       * Since OkHttp 5 this redacts these sensitive headers:
       *
       *  * `Authorization`
       *  * `Cookie`
       *  * `Proxy-Authorization`
       *  * `Set-Cookie`
       */
      override fun toString(): String = commonToString()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:51:25 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/PreauthIntegrityService.java

                }
            }
    
            public boolean isValid() {
                return isValid;
            }
    
            public void invalidate() {
                this.isValid = false;
                // Clear sensitive data
                synchronized (hashLock) {
                    Arrays.fill(currentHash, (byte) 0);
                }
            }
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  8. CHANGELOG.md

     *  Breaking: Move `gzip` from `RequestBody` to `Request.Builder`. This new API handles both
        compressing the request body and also adding the corresponding `Content-Encoding` header. Note
        that this function is sensitive to when it is called: the response body must be supplied before
        it can be compressed.
    
     *  Breaking: Remove `AddressPolicy`, `AsyncDns`, and `ConnectionListener` from the public API. We
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 31.6K bytes
    - Viewed (1)
  9. src/test/java/jcifs/util/SecureCredentialStorageTest.java

            assertNotNull(decrypted, "Decrypted data should not be null");
            assertArrayEquals(plaintext, decrypted, "Decrypted should match original");
    
            // Clean up sensitive data
            Arrays.fill(plaintext, '\0');
            Arrays.fill(decrypted, '\0');
        }
    
        @Test
        public void testEncryptDecryptEmpty() throws Exception {
            char[] plaintext = new char[0];
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java

            assertNull(doc.get("content_ja")); // content is not in langFields
        }
    
        public void test_getSupportedLanguage_caseInsensitive() {
            // Test that method is case sensitive (as per implementation)
            assertNull(languageHelper.getSupportedLanguage("JA"));
            assertNull(languageHelper.getSupportedLanguage("EN"));
            assertEquals("ja", languageHelper.getSupportedLanguage("ja"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top