Home
last modified time | relevance | path

Searched refs:newPwd (Results 1 – 3 of 3) sorted by relevance

/hardware/interfaces/gatekeeper/aidl/vts/functional/
DVtsHalGatekeeperTargetTest.cpp51 std::vector<uint8_t> newPwd; member
75 ret = gatekeeper_->enroll(uid_, req.curPwdHandle, req.curPwd, req.newPwd, &rsp); in doEnroll()
87 ret = gatekeeper_->verify(uid_, req.challenge, req.curPwdHandle, req.newPwd, &rsp); in doVerify()
135 req.newPwd = password; in enrollNewPassword()
146 verifyReq.newPwd = password; in verifyPassword()
285 reenrollReq.newPwd = newPassword; in TEST_P()
/hardware/interfaces/gatekeeper/1.0/vts/functional/
DVtsHalGatekeeperV1_0TargetTest.cpp52 hidl_vec<uint8_t> newPwd; member
89 uid_, req.curPwdHandle, req.curPwd, req.newPwd, in doEnroll()
101 uid_, req.challenge, req.curPwdHandle, req.newPwd, in doVerify()
166 req.newPwd.setToExternal(password.data(), password.size()); in enrollNewPassword()
177 verifyReq.newPwd = password; in verifyPassword()
308 reenrollReq.newPwd.setToExternal(newPassword.data(), newPassword.size()); in TEST_P()
/hardware/interfaces/security/keymint/aidl/vts/functional/
DAuthTest.cpp104 const std::vector<uint8_t>& newPwd, in doEnroll() argument
110 Status status = gk_->enroll(uid, curHandle, curPwd, newPwd, &rsp);
127 uid, curHandle, curPwd, newPwd,
162 std::optional<GatekeeperEnrollResponse> doEnroll(uint32_t uid, const string& newPwd, in doEnroll() argument
165 return doEnroll(uid, std::vector<uint8_t>(newPwd.begin(), newPwd.end()), curHandle,
168 std::optional<GatekeeperEnrollResponse> doEnroll(const string& newPwd) { in doEnroll() argument
169 return doEnroll(uid_, newPwd); in doEnroll()