Skip to content

Commit

Permalink
Merge pull request #2398 from BlackDex/remove-u2f
Browse files Browse the repository at this point in the history
Remove u2f implementation
  • Loading branch information
dani-garcia authored Mar 27, 2022
2 parents ed72741 + fb0c23b commit a07c213
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 414 deletions.
40 changes: 8 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,7 @@ totp-lite = "1.0.3"
# Yubico Library
yubico = { version = "0.10.0", features = ["online-tokio"], default-features = false }

# U2F libraries
u2f = "0.2.0"
# WebAuthn libraries
webauthn-rs = "0.3.2"

# Handling of URL's for WebAuthn
Expand Down
2 changes: 0 additions & 2 deletions src/api/core/two_factor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ use crate::{
pub mod authenticator;
pub mod duo;
pub mod email;
pub mod u2f;
pub mod webauthn;
pub mod yubikey;

Expand All @@ -25,7 +24,6 @@ pub fn routes() -> Vec<Route> {
routes.append(&mut authenticator::routes());
routes.append(&mut duo::routes());
routes.append(&mut email::routes());
routes.append(&mut u2f::routes());
routes.append(&mut webauthn::routes());
routes.append(&mut yubikey::routes());

Expand Down
Loading

0 comments on commit a07c213

Please sign in to comment.