fmt: fmt and clippy
This commit is contained in:
parent
bacb03d051
commit
ab4b8d37df
1 changed files with 4 additions and 13 deletions
|
@ -440,12 +440,6 @@ pub mod ssh {
|
|||
email: String,
|
||||
}
|
||||
|
||||
#[derive(Debug, Deserialize)]
|
||||
struct RequestResult {
|
||||
auth: String,
|
||||
keys: Vec<String>,
|
||||
}
|
||||
|
||||
pub async fn request(mut req: Request<State>) -> tide::Result {
|
||||
let RequestChallenge {
|
||||
user,
|
||||
|
@ -570,13 +564,10 @@ pub mod ssh {
|
|||
if let Ok(x) = AuthorizedKeys::read_file(path) {
|
||||
for entry in x {
|
||||
let key = entry.public_key();
|
||||
match key.verify("file", msg, &sig) {
|
||||
Ok(_) => {
|
||||
if key.verify("file", msg, &sig).is_ok() {
|
||||
valid = true;
|
||||
break;
|
||||
}
|
||||
Err(_) => {}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue