aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-10-27 22:56:09 -0400
committerJesse Luehrs <doy@tozt.net>2021-10-27 22:56:09 -0400
commitcc389962fdd1c7eca9d328b794c95f8d5536944c (patch)
treefeb0939ab58a672b0364a8a3bf1ccd7b7e1766bd /src/bin
parent3fa5908401237b643c69f84bbf4c69e1ca3e2484 (diff)
downloadrbw-cc389962fdd1c7eca9d328b794c95f8d5536944c.tar.gz
rbw-cc389962fdd1c7eca9d328b794c95f8d5536944c.zip
don't grab the keyboard when entering the api key
unlike the vault password, it's pretty unlikely that someone will be entering the api key by hand, so make copy/paste more reasonable
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/rbw-agent/actions.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bin/rbw-agent/actions.rs b/src/bin/rbw-agent/actions.rs
index 8039618..1cc71c3 100644
--- a/src/bin/rbw-agent/actions.rs
+++ b/src/bin/rbw-agent/actions.rs
@@ -36,6 +36,7 @@ pub async fn register(
&format!("Log in to {}", host),
err.as_deref(),
tty,
+ false,
)
.await
.context("failed to read client_id from pinentry")?;
@@ -45,6 +46,7 @@ pub async fn register(
&format!("Log in to {}", host),
err.as_deref(),
tty,
+ false,
)
.await
.context("failed to read client_secret from pinentry")?;
@@ -114,6 +116,7 @@ pub async fn login(
&format!("Log in to {}", host),
err.as_deref(),
tty,
+ true,
)
.await
.context("failed to read password from pinentry")?;
@@ -218,6 +221,7 @@ async fn two_factor(
"Enter the 6 digit verification code from your authenticator app.",
err.as_deref(),
tty,
+ true,
)
.await
.context("failed to read code from pinentry")?;
@@ -372,6 +376,7 @@ pub async fn unlock(
"Unlock the local database",
err.as_deref(),
tty,
+ true,
)
.await
.context("failed to read password from pinentry")?;