Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for secretkey (0.04 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java

        }
    
        // Test with different cipher types
        public void test_withBlowfishCipher() {
            // Test with Blowfish cipher
            InvertibleCryptographer blowfish = InvertibleCryptographer.createBlowfishCipher("secretkey");
            FessSecurityResourceProvider provider = new FessSecurityResourceProvider(blowfish, oneWayCryptographer);
    
            assertNotNull(provider);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

            value = "password={cipher}5691346cc398a4450114883140fa84a7\nsecretkey=unencrypted";
            result = ParameterUtil.encrypt(value);
            assertTrue(result.contains("password={cipher}5691346cc398a4450114883140fa84a7"));
            assertTrue(result.contains("secretkey={cipher}"));
            assertFalse(result.contains("secretkey=unencrypted"));
    
            // Test with keys that don't match pattern
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/Constants.java

        public static final String STORAGE_ACCESS_KEY = "storage.accesskey";
    
        /** Storage secret key configuration key. */
        public static final String STORAGE_SECRET_KEY = "storage.secretkey";
    
        /** Storage bucket configuration key. */
        public static final String STORAGE_BUCKET = "storage.bucket";
    
        // ============================================================
        // Mapping Type Constants
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/FauxveridesTest.java

    /**
     * Tests that all {@code public static} methods "inherited" from superclasses are "overridden" in
     * each immutable-collection class. This ensures, for example, that a call written "{@code
     * ImmutableSortedSet.copyOf()}" cannot secretly be a call to {@code ImmutableSet.copyOf()}.
     *
     * @author Chris Povirk
     */
    @NullUnmarked
    public class FauxveridesTest extends TestCase {
      public void testImmutableBiMap() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_fr.properties

    labels.notification_login=Page de connexion
    labels.notification_search_top=Page d'accueil de la recherche
    labels.storage_endpoint=Point de terminaison
    labels.storage_access_key=Clé d'accès
    labels.storage_secret_key=Clé secrète
    labels.storage_bucket=Compartiment
    labels.send_testmail=Envoyer un e-mail de test
    labels.backup_configuration=Sauvegarde
    labels.backup_name=Nom
    labels.backup_bulk_file=Fichier en vrac
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
Back to top