Searched refs:newPassword (Results 1 – 8 of 8) sorted by relevance
| /openbmc/webui-vue/src/views/ProfileSettings/ |
| H A D | ProfileSettings.vue | 54 :label="$t('pageProfileSettings.newPassword')" 68 v-model="form.newPassword" 72 :state="getValidationState(v$.form.newPassword)" 73 data-test-id="profileSettings-input-newPassword" 75 @input="v$.form.newPassword.$touch()" 80 v$.form.newPassword.minLength.$invalid || 81 v$.form.newPassword.maxLength.$invalid 191 newPassword: '', 218 newPassword: { 223 sameAsPassword: sameAs(this.form.newPassword), [all …]
|
| /openbmc/bios-settings-mgr/src/ |
| H A D | password.cpp | 124 std::string& newPassword, std::array<uint8_t, maxSeedSize>& seed, in verifyIntegrityCheck() argument 129 if (!PKCS5_PBKDF2_HMAC(reinterpret_cast<const char*>(newPassword.c_str()), in verifyIntegrityCheck() 130 newPassword.length() + 1, in verifyIntegrityCheck() 143 std::string newPassword) in verifyPassword() argument 181 if (!verifyIntegrityCheck(newPassword, seed, 32, EVP_sha256())) in verifyPassword() 188 if (!verifyIntegrityCheck(newPassword, seed, 48, EVP_sha384())) in verifyPassword() 198 std::string newPassword) in changePassword() argument 201 verifyPassword(userName, currentPassword, newPassword); in changePassword()
|
| /openbmc/bios-settings-mgr/include/ |
| H A D | password.hpp | 74 std::string newPassword) override; 78 std::string newPassword); 90 bool verifyIntegrityCheck(std::string& newPassword,
|
| /openbmc/estoraged/src/ |
| H A D | estoraged.cpp | 92 const std::vector<uint8_t>& newPassword) { in EStoraged() argument 93 this->changePassword(oldPassword, newPassword); in EStoraged() 280 const std::vector<uint8_t>& newPassword) in changePassword() argument 290 reinterpret_cast<const char*>(newPassword.data()), newPassword.size()); in changePassword()
|
| /openbmc/estoraged/src/test/ |
| H A D | estoraged_test.cpp | 603 std::vector<uint8_t> newPassword(newPasswordString.begin(), in TEST_F() local 612 reinterpret_cast<const char*>(newPassword.data()), in TEST_F() 613 newPassword.size())) in TEST_F() 617 esObject->changePassword(password, newPassword); in TEST_F() 624 std::vector<uint8_t> newPassword(newPasswordString.begin(), in TEST_F() local 633 reinterpret_cast<const char*>(newPassword.data()), in TEST_F() 634 newPassword.size())) in TEST_F() 637 EXPECT_THROW(esObject->changePassword(password, newPassword), in TEST_F()
|
| /openbmc/estoraged/include/ |
| H A D | estoraged.hpp | 133 const std::vector<uint8_t>& newPassword);
|
| /openbmc/webui-vue/src/views/ChangePassword/ |
| H A D | ChangePassword.vue | 19 :label="$t('pageChangePassword.newPassword')"
|
| /openbmc/openbmc-test-automation/gui/gui_test/gui_header/ |
| H A D | test_profile_settings_sub_menu.robot | 16 ${xpath_new_password} //*[@data-test-id='profileSettings-input-newPassword']
|