Home
last modified time | relevance | path

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

/DragonOS/user/apps/user-manage/src/check/
H A Dcheck.rs394 let mut check_password = String::new(); in check() localVariable
397 std::io::stdin().read_line(&mut check_password).unwrap(); in check()
398 check_password = check_password.trim().to_string(); in check()
399 if new_password != check_password { in check()
413 Self::check_password(cur_username, old_password); in check()
420 let mut check_password = String::new(); in check() localVariable
421 std::io::stdin().read_line(&mut check_password).unwrap(); in check()
422 check_password = check_password.trim().to_string(); in check()
423 if new_password != check_password { in check()
475 fn check_password(username: String, password: String) { in check_password() method