Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
gsidhwani-nr authored Nov 9, 2023
1 parent e711c09 commit 87df36a
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ In the extracted release directory run the encyptPwd.sh / encyptPwd.bat script a

### Step 1: Generate the 128 bit AES Key [ Example ]
encyptPwd generateKey
Generated AES Key: UpcuADRwNmGDr2+f0eVcBw==
### Step 2: Generate the mangles password [ Example ]
encyptPwd encryptPassword UpcuADRwNmGDr2+f0eVcBw== MyPassword@123
Encrypted Password: GkZ9c2ziz9QO7AlfALyZxg==-UMS-oMl/eTUOz/Heg0XtmoRugg==
Success !
Generated AES Key: <generated_aes_key>
### Step 2: Generate the encypted password [ Example ]
encyptPwd encryptPassword <generated_aes_key> <cleartext_password>
Encrypted Password: <encrypted_password>
Success !
### Sample softwareag-ums-server-config.json
{
Expand All @@ -54,7 +54,7 @@ In the extracted release directory run the encyptPwd.sh / encyptPwd.bat script a
"host": "localhost",
"port": 9000,
"username": "myuser4",
"password": "mypwd4",
"password": "<cleartext_password>",
"encryptPassword": false,
"isCluster": false
},
Expand All @@ -63,9 +63,9 @@ In the extracted release directory run the encyptPwd.sh / encyptPwd.bat script a
"host": "localhost",
"port": 9001,
"username": "myuser4",
"password": "MoRecH4RDktZm6+ma3JuyQ==-UMS-N6+7w1hdCz6+N84ccyshBQ==",
"password": "<encrypted_password>",
"encryptPassword": true,
"aeskey": "9WZvUdhkAXPQ55fcEcT4lw=="
"aeskey": "<generated_aes_key>"
}
]
}
Expand Down

0 comments on commit 87df36a

Please sign in to comment.