Searched refs:check_password (Results 1 – 1 of 1) sorted by relevance
394 let mut check_password = String::new(); in check() localVariable397 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() localVariable421 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