Home
last modified time | relevance | path

Searched full:keypairalgorithm (Results 1 – 25 of 25) sorted by relevance

/openbmc/phosphor-webui/app/access-control/controllers/
H A Dcertificate-modal-csr-gen.html245 <label for="keyPairAlgorithm" class="content-label">
250 ng-model="newCSR.keyPairAlgorithm"
251 id="keyPairAlgorithm"
252 name="keyPairAlgorithm"
263 ng-repeat="data in keyPairAlgorithm">
268 ng-messages="addCsrForm.keyPairAlgorithm.$error"
270 ng-class="{'visible' : addCsrForm.keyPairAlgorithm.$touched}">
274 <div ng-if="newCSR.keyPairAlgorithm == 'EC'">
301 <div ng-if="newCSR.keyPairAlgorithm =='RSA'">
H A Dcertificate-controller.js24 $scope.keyPairAlgorithm = Constants.CERTIFICATE.KEY_PAIR_ALGORITHM;
171 addCSR.KeyPairAlgorithm = $scope.newCSR.keyPairAlgorithm || '';
253 $scope.newCSR.keyPairAlgorithm = $scope.selectOption;
/openbmc/webui-vue/src/views/SecurityAndAccess/Certificates/
H A DModalGenerateCsr.vue235 :label="$t('pageCertificates.modal.keyPairAlgorithm')"
240 v-model="form.keyPairAlgorithm"
241 data-test-id="modalGenerateCsr-select-keyPairAlgorithm"
243 :state="getValidationState(v$.form.keyPairAlgorithm)"
244 @input="v$.form.keyPairAlgorithm.$touch()"
260 <template v-if="v$.form.keyPairAlgorithm.$model === 'EC'">
284 <template v-if="v$.form.keyPairAlgorithm.$model === 'RSA'">
397 keyPairAlgorithm: null,
439 keyPairAlgorithm: { required },
442 return form.keyPairAlgorithm === 'EC';
[all …]
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Certs/CSR/
H A DCreate.interface.yaml68 the KeyPairAlgorithm parameter.
75 value of the KeyPairAlgorithm parameter.
78 - name: KeyPairAlgorithm
/openbmc/phosphor-certificate-manager/
H A Dcerts_manager.cpp441 std::string keyPairAlgorithm, std::vector<std::string> keyUsage, in generateCSR() argument
460 keyBitLength, keyCurveId, keyPairAlgorithm, keyUsage, in generateCSR()
541 std::string keyPairAlgorithm, std::vector<std::string> keyUsage, in generateCSRHelper() argument
567 addEntry(x509Name, "algorithm", keyPairAlgorithm); in generateCSRHelper()
590 lg2::info("Given Key pair algorithm, KEYPAIRALGORITHM:{KEYPAIRALGORITHM}", in generateCSRHelper()
591 "KEYPAIRALGORITHM", keyPairAlgorithm); in generateCSRHelper()
594 if (keyPairAlgorithm == "RSA") in generateCSRHelper()
596 else if ((keyPairAlgorithm == "EC") || (keyPairAlgorithm.empty())) in generateCSRHelper()
603 Argument::ARGUMENT_NAME("KEYPAIRALGORITHM"), in generateCSRHelper()
604 Argument::ARGUMENT_VALUE(keyPairAlgorithm.c_str())); in generateCSRHelper()
H A Dcerts_manager.hpp136 * on the value of the KeyPairAlgorithm parameter.
138 * based on the value of the KeyPairAlgorithm parameter.
139 * @param[in] keyPairAlgorithm - The type of key pair for use with signing
193 std::string keyCurveId, std::string keyPairAlgorithm,
216 std::string keyCurveId, std::string keyPairAlgorithm,
/openbmc/webui-vue/src/store/modules/SecurityAndAccess/
H A DCertificatesStore.js200 keyPairAlgorithm,
222 data.KeyPairAlgorithm = keyPairAlgorithm;
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema/
H A DCertificateService.v1_0_6.json179 …cription": "The length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter va…
180 …all contain the length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter va…
184 …iption": "The curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter va…
185 …l contain the curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter va…
188 "KeyPairAlgorithm": { object
H A DCertificate.v1_9_0.json499 …cription": "The length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter va…
500 …all contain the length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter va…
504 …iption": "The curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter va…
505 …l contain the curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter va…
508 "KeyPairAlgorithm": { object
/openbmc/bmcweb/redfish-core/schema/dmtf/json-schema-installed/
H A DCertificateService.v1_0_6.json179 …cription": "The length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter va…
180 …all contain the length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter va…
184 …iption": "The curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter va…
185 …l contain the curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter va…
188 "KeyPairAlgorithm": { object
H A DCertificate.v1_9_0.json499 …cription": "The length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter va…
500 …all contain the length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter va…
504 …iption": "The curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter va…
505 …l contain the curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter va…
508 "KeyPairAlgorithm": { object
/openbmc/phosphor-certificate-manager/test/
H A Dcerts_manager_test.cpp229 std::string keyCurveId, std::string keyPairAlgorithm, in generateCSR() argument
237 keyCurveId, keyPairAlgorithm, keyUsage, organization, in generateCSR()
1014 std::string keyPairAlgorithm("RSA"); in TEST_F() local
1033 keyBitLength, keyCurveId, keyPairAlgorithm, keyUsage, in TEST_F()
1082 std::string keyPairAlgorithm(""); in TEST_F() local
1099 keyBitLength, keyCurveId, keyPairAlgorithm, keyUsage, in TEST_F()
1129 std::string keyPairAlgorithm("UnSupportedAlgorithm"); in TEST_F() local
1146 keyBitLength, keyCurveId, keyPairAlgorithm, keyUsage, in TEST_F()
1175 std::string keyPairAlgorithm("EC"); in TEST_F() local
1192 keyBitLength, keyCurveId, keyPairAlgorithm, keyUsage, in TEST_F()
[all …]
/openbmc/bmcweb/redfish-core/schema/dmtf/installed/
H A DCertificateService_v1.xml103 <Parameter Name="KeyPairAlgorithm" Type="Edm.String">
108 <Annotation Term="OData.Description" String="The length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter value."/>
109 <Annotation Term="OData.LongDescription" String="This parameter shall contain the length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter value."/>
112 <Annotation Term="OData.Description" String="The curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter value."/>
113 <Annotation Term="OData.LongDescription" String="This parameter shall contain the curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter value. The allowable values for this parameter shall be the strings in the 'Name' field of the 'TPM_ECC_CURVE Constants' table within the 'Trusted Computing Group Algorithm Registry'."/>
H A DCertificate_v1.xml217 <Parameter Name="KeyPairAlgorithm" Type="Edm.String">
222 …on" String="The length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter va…
223 …all contain the length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter va…
226 …" String="The curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter va…
227 …l contain the curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter va…
/openbmc/bmcweb/redfish-core/schema/dmtf/csdl/
H A DCertificateService_v1.xml103 <Parameter Name="KeyPairAlgorithm" Type="Edm.String">
108 …on" String="The length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter va…
109 …all contain the length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter va…
112 …" String="The curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter va…
113 …l contain the curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter va…
H A DCertificate_v1.xml217 <Parameter Name="KeyPairAlgorithm" Type="Edm.String">
222 …on" String="The length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter va…
223 …all contain the length of the key, in bits, if needed based on the `KeyPairAlgorithm` parameter va…
226 …" String="The curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter va…
227 …l contain the curve ID to use with the key, if needed based on the `KeyPairAlgorithm` parameter va…
/openbmc/openbmc-test-automation/docs/
H A Dcertificate_generate.md61 "KeyPairAlgorithm": <RSA/EC>
78 "KeyPairAlgorithm": "RSA"
/openbmc/openbmc-test-automation/gui/gui_test/security_and_access_menu/
H A Dtest_certificates_sub_menu.robot31 ${xpath_select_algorithm_button} //*[@data-test-id='modalGenerateCsr-select-keyPairAlgorithm']
/openbmc/phosphor-dbus-interfaces/yaml/xyz/openbmc_project/Certs/
H A DREADME.md139 "KeyPairAlgorithm": "RSA",
/openbmc/openbmc-test-automation/redfish/managers/
H A Dtest_certificate.robot290 ... KeyPairAlgorithm=${key_pair_algorithm} KeyCurveId=${key_curv_id}
/openbmc/openbmc-test-automation/redfish/dmtf_tools/
H A Dtest_redfishtool_certificate.robot222 ... KeyPairAlgorithm=${key_pair_algorithm} KeyCurveId=${key_curv_id}
/openbmc/bmcweb/redfish-core/lib/
H A Dcertificate_service.hpp729 "KeyPairAlgorithm", optKeyPairAlgorithm, // in handleGenerateCSRAction()
778 asyncResp->res, "KeyPairAlgorithm", "GenerateCSR"); in handleGenerateCSRAction()
/openbmc/webui-vue/src/locales/
H A Dru-RU.json966 "keyPairAlgorithm": "Алгоритм ключевой пары", string
H A Den-US.json980 "keyPairAlgorithm": "Key pair algorithm", string
/openbmc/openbmc-tools/openbmctool/
H A Dopenbmctool.py3325 "KeyPairAlgorithm":args.keyPairAlgorithm, "KeyCurveId":args.keyCurveId,
4984 certGenerateCSR.add_argument('keyPairAlgorithm', choices=['RSA', 'EC'],
4987 …rve ID to be used with the key, if needed based on the value of the 'KeyPairAlgorithm' parameter.")