Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for secretkey (0.06 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/s3/S3ClientTest.java

            s3Client = container.getComponent("s3Client");
            Map<String, Object> params = new HashMap<>();
            params.put("endpoint", endpoint);
            params.put("accessKey", ACCESS_KEY);
            params.put("secretKey", SECRET_KEY);
            params.put("region", "us-east-1");
            s3Client.setInitParameterMap(params);
    
            for (int i = 0; i < 10; i++) {
                try {
                    setupMinioClient(bucketName, endpoint);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 07:57:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java

            Map<String, Object> params = new HashMap<>();
            params.put("endpoint", endpoint);
            params.put("accessKey", ACCESS_KEY);
            params.put("secretKey", SECRET_KEY);
            storageClient.setInitParameterMap(params);
    
            for (int i = 0; i < 10; i++) {
                try {
                    setupMinioClient(bucketName, endpoint);
                    break;
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20.9K bytes
    - Viewed (0)
  3. docs/smb3-features/02-persistent-handles-design.md

        }
    }
    ```
    
    ## 12. Security Considerations
    
    ### 12.1 Handle State Encryption
    ```java
    public class SecureHandleStorage {
        private final SecretKey encryptionKey;
        
        public void saveEncrypted(HandleInfo handle, Path file) throws Exception {
            Cipher cipher = Cipher.getInstance("AES/GCM/NoPadding");
            cipher.init(Cipher.ENCRYPT_MODE, encryptionKey);
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  4. 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";
    
        /** Storage type configuration key (s3, gcs, auto). */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 35.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/crypto/CachedCipherTest.java

    /**
     * Tests for {@link CachedCipher}.
     */
    public class CachedCipherTest {
    
        @Test
        public void testEncryptDecryptBytes() {
            final CachedCipher cipher = new CachedCipher();
            cipher.setKey("mySecretKey");
    
            final byte[] original = "Hello World".getBytes();
            final byte[] encrypted = cipher.encrypt(original);
            final byte[] decrypted = cipher.decrypt(encrypted);
    
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/crypto/CachedCipher.java

     * </ul>
     * <p>
     * <strong>Usage Example:</strong>
     * </p>
     * <pre>
     * CachedCipher cipher = new CachedCipher();
     * cipher.setKey("mySecretKey");
     *
     * // Encrypt text
     * String encrypted = cipher.encryptText("Hello World");
     *
     * // Decrypt text
     * String decrypted = cipher.decryptText(encrypted);
     *
     * // For AES encryption
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  7. 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.storage_type=Type
    labels.storage_type_auto=Auto
    labels.storage_type_s3=S3
    labels.storage_type_gcs=GCS
    labels.storage_region=Region
    labels.storage_project_id=Project ID
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 49.2K bytes
    - Viewed (0)
Back to top