From dfba4e542e816712d3857e32aa52e9a930c9e889 Mon Sep 17 00:00:00 2001 From: Vedangi Mittal Date: Tue, 23 Apr 2024 14:13:23 +0530 Subject: Removed Challenge password option from Generate CSR panel - Unable to generate Certificate Signing Request (CSR) when filling optional field-Challenge password values on Certificate page. - Hence, removed the Challenge password option from the Generate CSR panel. Change-Id: I862f024de84f34738be5e5cd22701b63c2309152 Signed-off-by: Vedangi Mittal --- src/store/modules/SecurityAndAccess/CertificatesStore.js | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/store') diff --git a/src/store/modules/SecurityAndAccess/CertificatesStore.js b/src/store/modules/SecurityAndAccess/CertificatesStore.js index 3583d7f1..666f5fd5 100644 --- a/src/store/modules/SecurityAndAccess/CertificatesStore.js +++ b/src/store/modules/SecurityAndAccess/CertificatesStore.js @@ -166,7 +166,6 @@ const CertificatesStore = { keyPairAlgorithm, keyBitLength, keyCurveId, - challengePassword, contactPerson, emailAddress, alternateName, @@ -187,7 +186,6 @@ const CertificatesStore = { if (keyCurveId) data.KeyCurveId = keyCurveId; if (keyBitLength) data.KeyBitLength = keyBitLength; - if (challengePassword) data.ChallengePassword = challengePassword; if (contactPerson) data.ContactPerson = contactPerson; if (emailAddress) data.Email = emailAddress; -- cgit v1.2.3