- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for my_secret_key (0.04 sec)
-
docs/docker/README.md
``` docker service create --name="minio-service" \ --secret="my_access_key" \ --secret="my_secret_key" \ --env="MINIO_ROOT_USER_FILE=my_access_key" \ --env="MINIO_ROOT_PASSWORD_FILE=my_secret_key" \ quay.io/minio/minio server /data ```
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.2K bytes - Viewed (0) -
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) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/s3/Handler.java
* </p> * <ul> * <li>{@code S3_ENDPOINT}: The endpoint URL of the S3 service.</li> * <li>{@code S3_ACCESS_KEY}: The access key for authentication.</li> * <li>{@code S3_SECRET_KEY}: The secret key for authentication.</li> * <li>{@code S3_REGION}: The region of the S3 service (default: us-east-1).</li> * </ul> * * <p>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 07:57:44 UTC 2025 - 9.5K bytes - Viewed (0)