Home
last modified time | relevance | path

Searched refs:keyBitLength (Results 1 – 6 of 6) sorted by relevance

/openbmc/phosphor-certificate-manager/
H A Dcerts_manager.hpp192 std::string givenName, std::string initials, int64_t keyBitLength,
215 std::string givenName, std::string initials, int64_t keyBitLength,
226 generateRSAKeyPair(const int64_t keyBitLength);
288 getRSAKeyPair(const int64_t keyBitLength);
H A Dcerts_manager.cpp440 std::string initials, int64_t keyBitLength, std::string keyCurveId, in generateCSR() argument
460 keyBitLength, keyCurveId, keyPairAlgorithm, keyUsage, in generateCSR()
540 std::string initials, int64_t keyBitLength, std::string keyCurveId, in generateCSRHelper() argument
595 pKey = getRSAKeyPair(keyBitLength); in generateCSRHelper()
642 EVPPkeyPtr Manager::generateRSAKeyPair(const int64_t keyBitLength) in generateRSAKeyPair() argument
644 int64_t keyBitLen = keyBitLength; in generateRSAKeyPair()
1023 EVPPkeyPtr Manager::getRSAKeyPair(const int64_t keyBitLength) in getRSAKeyPair() argument
1025 if (keyBitLength != supportedKeyBitLength) in getRSAKeyPair()
1030 "GIVENKEYBITLENGTH", keyBitLength, "SUPPORTEDKEYBITLENGTH", in getRSAKeyPair()
1034 Argument::ARGUMENT_VALUE(std::to_string(keyBitLength).c_str())); in getRSAKeyPair()
/openbmc/webui-vue/src/store/modules/SecurityAndAccess/
H A DCertificatesStore.js201 keyBitLength,
226 if (keyBitLength) data.KeyBitLength = keyBitLength;
/openbmc/phosphor-certificate-manager/test/
H A Dcerts_manager_test.cpp228 std::string givenName, std::string initials, int64_t keyBitLength, in generateCSR() argument
236 contactPerson, country, email, givenName, initials, keyBitLength, in generateCSR()
1012 int64_t keyBitLength(2048); in TEST_F() local
1033 keyBitLength, keyCurveId, keyPairAlgorithm, keyUsage, in TEST_F()
1080 int64_t keyBitLength(2048); in TEST_F() local
1099 keyBitLength, keyCurveId, keyPairAlgorithm, keyUsage, in TEST_F()
1127 int64_t keyBitLength(2048); in TEST_F() local
1146 keyBitLength, keyCurveId, keyPairAlgorithm, keyUsage, in TEST_F()
1173 int64_t keyBitLength(2048); in TEST_F() local
1192 keyBitLength, keyCurveId, keyPairAlgorithm, keyUsage, in TEST_F()
[all …]
/openbmc/webui-vue/src/views/SecurityAndAccess/Certificates/
H A DModalGenerateCsr.vue286 :label="$t('pageCertificates.modal.keyBitLength')"
291 v-model="form.keyBitLength"
292 data-test-id="modalGenerateCsr-select-keyBitLength"
294 :state="getValidationState(v$.form.keyBitLength)"
295 @input="v$.form.keyBitLength.$touch()"
399 keyBitLength: null,
445 keyBitLength: {
/openbmc/phosphor-webui/app/access-control/controllers/
H A Dcertificate-controller.js23 $scope.keyBitLength = Constants.CERTIFICATE.KEY_BIT_LENGTH;
170 addCSR.KeyBitLength = $scope.newCSR.keyBitLength
252 $scope.newCSR.keyBitLength = $scope.selectOption;