Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update checkpoint passwordUtil test aes128(v0) passwords to aes256(v1) #30604

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -66,7 +66,7 @@ public static void setUp() throws Exception {
// set the env for AUTO_USER_NAME and AUTO_USER_PASSWORD
Map<String, String> 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) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
-Dcom.ibm.ws.beta.edition=true
-Xdump:java:events=throw+systhrow,filter=org/eclipse/openj9/criu/JVMCheckpointException,request=exclusive+preempt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
Copyright (c) 2022, 2024 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
Expand All @@ -21,9 +21,10 @@
</featureManager>

<application type="war" id="DefaultPrincipalMappingApp" name="DefaultPrincipalMappingApp" location="${server.config.dir}/apps/DefaultPrincipalMappingApp.war"/>

<variable name="auth.user.password" defaultValue="{aes}APb9ZaYzUL+JsfFD/OOBGaPM0evjmx5AnvmzbaKgffyX" /> <!-- APPPWD -->
<variable name="default.user.password" defaultValue="{aes}APb9ZaYzUL+JsfFD/OOBGaPM0evjmx5AnvmzbaKgffyX" /> <!-- APPPWD -->

<variable name="auth.user.password" defaultValue="{aes}ARA6E+YeyO1II3V5/j78ZPSryIQKz5Hu4OMs6qhFw+rn6IjvU8aHX+fy4hX1ZtAU4HPbRZ5DaHmGb7CpjlXfX1Bm9leNqxgd+q8nvzTNBGs6wW8RHj/n0GaiuT4n7m2pYy0pDDh5amoZ" /> <!-- APPPWD -->
Zech-Hein marked this conversation as resolved.
Show resolved Hide resolved
<variable name="default.user.password" defaultValue="{aes}ARA6E+YeyO1II3V5/j78ZPSryIQKz5Hu4OMs6qhFw+rn6IjvU8aHX+fy4hX1ZtAU4HPbRZ5DaHmGb7CpjlXfX1Bm9leNqxgd+q8nvzTNBGs6wW8RHj/n0GaiuT4n7m2pYy0pDDh5amoZ" /> <!-- APPPWD -->


<!-- This authData will be overridden at restore by environment vars -->
<authData id="myAuthData" user="${auth.user.name}" password="${auth.user.password}" />
Expand Down