From f9b7be0c27bb912bc04d34cf60db1d5579bc757a Mon Sep 17 00:00:00 2001 From: Mark Kelly Date: Mon, 4 Mar 2024 18:13:55 -0500 Subject: [PATCH] HPCC-31391 Roxie passphrase incorrectly decrypted Signed-off-by: Mark Kelly --- roxie/ccd/ccdmain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roxie/ccd/ccdmain.cpp b/roxie/ccd/ccdmain.cpp index 3545d613b85..ecaa7722ca7 100644 --- a/roxie/ccd/ccdmain.cpp +++ b/roxie/ccd/ccdmain.cpp @@ -1537,7 +1537,7 @@ int CCD_API roxie_main(int argc, const char *argv[], const char * defaultYaml) const char *passPhrase = roxieFarm.queryProp("@passphrase"); if (!isEmptyString(passPhrase)) - decrypt(passPhraseStr, passPhrase); + passPhraseStr.append(passPhrase); // NB passphrase is decrypted in CSecureSocketContext::createNewContext() const char *certFile = roxieFarm.queryProp("@certificateFileName"); if (!certFile)