From 90c793e38310a039397b87b8c5aa1f40e7326379 Mon Sep 17 00:00:00 2001 From: Zechariah Hein Date: Wed, 22 Jan 2025 10:53:29 -0600 Subject: [PATCH] use aes for env variable setting --- .../src/io/openliberty/checkpoint/fat/PasswordUtilsTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/io.openliberty.checkpoint_fat/fat/src/io/openliberty/checkpoint/fat/PasswordUtilsTest.java b/dev/io.openliberty.checkpoint_fat/fat/src/io/openliberty/checkpoint/fat/PasswordUtilsTest.java index 420f25e13db0..f7c3a7eb2bdd 100644 --- a/dev/io.openliberty.checkpoint_fat/fat/src/io/openliberty/checkpoint/fat/PasswordUtilsTest.java +++ b/dev/io.openliberty.checkpoint_fat/fat/src/io/openliberty/checkpoint/fat/PasswordUtilsTest.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2022, 2023 IBM Corporation and others. + * Copyright (c) 2022, 2025 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at @@ -66,7 +66,7 @@ public static void setUp() throws Exception { // set the env for AUTO_USER_NAME and AUTO_USER_PASSWORD Map envMap = new HashMap<>(); envMap.put("AUTH_USER_NAME", "testUser"); - envMap.put("AUTH_USER_PASSWORD", "testPassword"); + envMap.put("AUTH_USER_PASSWORD", "{aes}ARCHov5Vfq7P9gus4lCT6rxK4kaQVJRkb4A7yuXUCylWinncR8zkPwHQrQ/6PTb2DTi6AHEUaYHu3sWqRZoUOUy7v7tvfRTWGrXaa3z96yyMmQQyrcMP9yiDCexZ3XMmHUrkYBdpYTyH59JcVxcr"); //testPassword try { FATSuite.configureEnvVariable(s, envMap); } catch (Exception e) {